-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdivCSS实战.css
83 lines (83 loc) · 1.37 KB
/
divCSS实战.css
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
78
79
80
81
82
83
body{
background: #2286c6;
margin: 0px;
padding: 0px;
font-size: 12px;
font-family: Arial;
}
#container{
margin: 0px auto;
width: 780px;
height: 600px;
text-align: left;
background: #123456;
}
#banner{
margin: 0px;
padding: 0px;
background: #789;
height: 150px;
width: 100%;
}
#globallink{
margin: 0px;
padding: 0px;
padding:0px;
margin:0px;
}
#globallink ul{
list-style-type: none;
}
#globallink ul li{
float: left;
text-align: center;
width: 60px;
}
#globallink ul li a{
display: block;
padding: 8px 6px 10px 6px;
margin:0px;
background:url("images/button1.png") no-repeat;
}
#globallink a:link,#globallink a:visited{
color: #004a87;
text-decoration: underline;}
#globallink a:hover{
color: #ffffff;
text-decoration: none;
background: url("images/button1_bg.png") no-repeat;
}
#left{
width: 200px;
height: 370px;
background: red;
margin: 0px;
padding: 0px 0px 5px 0px;
color: #d8ecff;
float: left;
}
#middle{
width: 400px;
height: 370px;
background: blue;
margin: 0px 2px 0px 2px;
padding: 5px 0px 5px 0px;
color: #d8ecff;
float:left;
}
#right{
width: 176px;
height: 370px;
background:pink;
margin: 0px ;
padding: 0px 0px 5px 0px;
float: left;
}
#footer{
width: 100%;
height: 30px;
background:yellow;
margin: 1px 0px 0px 0px ;
padding: 1px 0px;
clear: both;
}