You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
231 B
23 lines
231 B
4 years ago
|
/*清除浮动*/
|
||
|
.clearfloat{
|
||
|
zoom:1
|
||
|
}
|
||
|
|
||
|
.clearfloat:after{
|
||
|
display:block;
|
||
|
clear:both;
|
||
|
content:"";
|
||
|
visibility:hidden;
|
||
|
height:0
|
||
|
}
|
||
|
|
||
|
|
||
|
.container{
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
/*中间居中盒子*/
|
||
|
.center{
|
||
|
width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
}
|