-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
55 lines (47 loc) · 1015 Bytes
/
Copy pathcss.html
File metadata and controls
55 lines (47 loc) · 1015 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.italic {
font-style: italic;
}
.strong {
font-weight: normal;
background: #fff;
}
.bold {
font-weight: bold;
}
p {
color: #F00;
background-color: #aaa;
margin: 50px 20px 20px 40px;
padding: 20px;
line-height: 200%;
border: dashed 2px #firebrick;
border-left: 5px solid hsla(240, 100%, 50%, 1.0);
text-indent: 40px;
}
a {
text-decoration: none;
}
div {
width: 200px;
height: 200px;
background-color: #ccc;
padding: 50px;
border: 25px solid #f00;
}
/*a:link{}
a:visited{}
a:hover{}
a:active{}
a:focus{}*/
</style>
</head>
<body>
<div>我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我我</div>
</body>
</html>