天天看點

css樣式初始化(base.css)

@charset "UTF-8";
/*css 初始化 */
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img {
    margin: ;
    padding: ;
}

fieldset, img, input, button {          /*fieldset組合表單中的相關元素*/
    border: none;
    padding: ;
    margin: ;
    outline-style: none;
}

ul, ol {
    list-style: none;               /*清除清單風格*/
}

input {
    padding-top: ;
    padding-bottom: ;
    font-family: "SimSun", "宋體";
}

select, input {
    vertical-align: middle;
}

select, input, textarea {
    font-size: px;
    margin: ;
}

textarea {
    resize: none;
}

/*防止多行文本框拖動*/
img {
    border: ;
    vertical-align: middle;
}

/*  去掉圖檔低測預設的3像素空白縫隙*/
table {
    border-collapse: collapse;          /*合并外邊線*/
}


body {
    font: px/% Arial, Verdana, "\5b8b\4f53";   /*宋體,Unicode,統一碼*/
    color: #666;
    background: #fff
}

.clearfix:before, .clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: ; /*IE/7/6*/
}

a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #C81623;
}

h1, h2, h3, h4, h5, h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: %;
}

s, i, em {              
    font-style: normal;
    text-decoration: none;
}

.col-red {
    color: #C81623 !important;
}

/*公共類*/
.w {
    /*版心 提取 */
    width: px;
    margin:  auto;
}

.fl {
    float: left
}

.fr {
    float: right
}

.al {
    text-align: left
}

.ac {
    text-align: center
}

.ar {
    text-align: right
}

.hide {
    display: none
}