码迷,mamicode.com
首页 > Web开发 > 详细

19 01 03 css 中 reset 模块 设置

时间:2019-01-03 14:03:19      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:ati   下划线   oat   eset   float   NPU   100%   normal   style   

主要就是让到时候 打入代码时候  把一些bug去除   或者 让一些固有的格式取消

/* 将标签默认的间距设为0   */
body,p,h1,h2,h3,h4,h5,h6,ul,dl,dt,form,input{
    margin:0;
    padding:0;
}
/*  去掉默认的小圆点   */
ul{
    list-style:none;
}

/* 去掉默认的下划线   */
a{
    text-decoration:none;
}

/* 设置不倾斜   */
em{
    font-style:normal;
}

/*  去掉在IE下图片做链接时生成的边框  */
img{
    border:0px;
}

/* 让h标签继承body中的字体大小的设置   */
h1,h2,h3,h4,h5,h6{
    font-size:100%;
}
/* 清除浮动、解决margin-top塌陷   */
.clearfix:before,.clearfix:after{
    content:"";
    display:table;
}
.clearfix:after{
    clear:both;
}
.clearfix{
    zoom:1;
}


.fl{
    float:left;
}
.fr{
    float:right;
}

 

19 01 03 css 中 reset 模块 设置

标签:ati   下划线   oat   eset   float   NPU   100%   normal   style   

原文地址:https://www.cnblogs.com/fromlantianwei/p/10213591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!