-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.css
More file actions
46 lines (43 loc) · 796 Bytes
/
1.css
File metadata and controls
46 lines (43 loc) · 796 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
table {
border-collapse: collapse;
}
td,th {
border: thick double rgb(101, 101, 101);
padding: 10px 0px;
/* 参数对应顺序:上 右 下 左 */
}
.summary {
color: black;
font-size: 16px;
font-weight: bold;
/* 也可以用<b></b>标签包裹 */
margin-left: 20px;
margin-right: 20px;
line-height: 2em;
/* 行高 */
text-indent: 2em;
/* 首行缩进 */
}
.prize{
color: red;
font-size:14px;
margin-left: 20px;
}
.promise{
color:red;
font-size:12px;
margin-left:20px;
}
.recom{
color: black;
font-size: 16px;
}
/* 字体大小是调整font-size 不是size属性 */
/* 行高是line-height 不是height */
button{
color: red;
}
button:disabled{
color: white;
background-color: gray;
}