123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*(1)清除默认样式*/
- html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img,input,div{ margin:0; padding:0; }
- fieldset, img,input,button { border:0 none; padding:0;margin:0;outline-style:none; } /*去掉input等聚焦时的蓝色边框*/
- ul,li,ol{ list-style:none; }
- select, input { vertical-align:middle;}
- textarea { resize:none; } /*防止拖动*/
- img {border:0; vertical-align:middle; }
- /* 去掉图片低测默认的3像素空白缝隙*/
- table { border-collapse:collapse; }
- a {text-decoration:none; }
- /*固定盒子*/
- *{
- box-sizing: border-box;
- }
- /* 清除ie的浮动问题 */
- .clearfix {
- zoom:1; /* for ie6 & ie7 */
- }
-
- /*万能清除法*/
- .clearfix::after{
- content:"";
- clear:both;
- display:block;
- height:0;
- overflow:hidden;
- visibility:hidden;
- }
- /*设置浮动*/
- .fl{
- float:left;
- }
- .fr{
- float:right;
- }
- /*公共类*/
- .container { /*内容、版心 提取 */
- width: 1210px;
- /*100%是继承父元素的高或者宽*/
- height: 100%;
- /*background-color:yellow;*/
- margin:0 auto;
- }
|