reset.css

作者: 蘇简 | 来源:发表于2016-11-19 19:46 被阅读5次

    平常项目用来重置css样式的文件。

    .container {
      width: 1150px;
      margin: 0 auto;
    }
    div,
    a,
    span,
    li,
    ul,
    ol,
    body,
    dl,
    dd,
    dt,
    input,
    textarea,
    form,
    button,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
      padding: 0;
      margin: 0;
    }
    body {
      font-family: "微软雅黑", serif;
    }
    li {
      list-style: none;
    }
    a {
      text-decoration: none;
      color: #000;
    }
    .clearfix:after{
      content: "";
      height: 0;
      overflow: hidden;
      visibility: hidden;
      clear: both;
      display: block;
    }
    em,i {
      font-style: normal;
    }
    .flex{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      display: -webkit-flex;
    }
    

    不太喜欢用normalize.css,实际用起来不太符合项目需求,主要是自己也用的不习惯。

    以后添加新的重置样式,我会更新这部分代码的。

    相关文章

      网友评论

        本文标题:reset.css

        本文链接:https://www.haomeiwen.com/subject/srjepttx.html