-
Notifications
You must be signed in to change notification settings - Fork 0
/
cssBoderBackground.html
52 lines (52 loc) · 1.74 KB
/
cssBoderBackground.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>border & background</title>
<style>
#s1{
background-color:red ;
height: 100px;
width: 400px;
border: 4px solid rgb(4, 32, 4);
/* border-color: rgb(18, 4, 2);
border-style: solid;
border-width: 3px; */
border-radius: 8px;
}
#s2{
background-color:red ;
height: 100px;
width: 400px;
border-top: 4px solid;
border-right: 3px solid black;
border-left: 4px solid blue;
border-bottom: 4px solid green2;
border-top-left-radius: 8px;
border-bottom-right-radius: 8px;
border-bottom-left-radius: 15px;
border-top-right-radius: 15px;
/* border: 4px solid rgb(4, 32, 4); */
/* border-color: rgb(18, 4, 2);
border-style: solid;
border-width: 3px; */
/* border-radius: 8px; */
}
#s3{
height: 100px;
width: 400px;
border-image: url('https://i0.wp.com/css-tricks.com/wp-content/uploads/2021/01/html5-css3.jpg?resize=498%2C249&ssl=1');
}
</style>
</head>
<body>
<h4> 1Lorem ipsum dolor sit amet consectetur adipisicing elit.</h4>
<p id="s1">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h3>2Lorem ipsum dolor sit amet consectetur adipisicing elit.</h3>
<p id="s2">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
<h3>3Lorem ipsum dolor sit amet consectetur adipisicing elit.</h3>
<p id="s3">Lorem ipsum dolor sit amet consectetur adipisicing elit. Sed.</p>
</body>
</html>