1. 程式人生 > >19 01 03 css 中 reset 模組 設定

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;
}