-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder-width.html
More file actions
77 lines (77 loc) · 1.49 KB
/
border-width.html
File metadata and controls
77 lines (77 loc) · 1.49 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!-- @w3_uz › #css › #border_width
border › width -->
<!DOCTYPE html>
<html>
<head>
<title>
@w3_uz › CSS › Border width / Chegara qaniligi / kengligi.
</title>
<meta charset="UTF-8">
<style>
.border_width_1 {
border-style: solid;
border-width: 1px;
}
.border_width_5 {
border-style: solid;
border-width: 5px;
}
.border_width_10 {
border-style: solid;
border-width: 10px;
}
.border_width_15 {
border-style: solid;
border-width: 15px;
}
.border_width_20 {
border-style: solid;
border-width: 20px;
}
.border_width_25 {
border-style: solid;
border-width: 25px;
}
.border_width_30 {
border-style: solid;
border-width: 30px;
}
div {
margin: 10px;
}
</style>
</head>
<body>
<h1>
CSS › Border width / Chegara qaniligi / kengligi.
</h1>
<div class="border_width_1"><pre>
border-style: solid;
border-width: 1px;
</pre></div>
<div class="border_width_5"><pre>
border-style: solid;
border-width: 5px;
</pre></div>
<div class="border_width_10"><pre>
border-style: solid;
border-width: 10px;
</pre></div>
<div class="border_width_15"><pre>
border-style: solid;
border-width: 15px;
</pre></div>
<div class="border_width_20"><pre>
border-style: solid;
border-width: 20px;
</pre></div>
<div class="border_width_25"><pre>
border-style: solid;
border-width: 25px;
</pre></div>
<div class="border_width_30"><pre>
border-style: solid;
border-width: 30px;
</pre></div>
</body>
<html>`