19 01 03 css 中 reset 模块 设置

主要就是让到时候 打入代码时候  把一些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;
}

 

posted @ 2019-01-03 12:38  Mr喃先森  阅读(182)  评论(0编辑  收藏  举报