css reset

作者: icaojinyu | 来源:发表于2019-10-13 09:58 被阅读0次
       * {
          margin: 0;
          padding: 0;
        }
    
        ul {
          list-style: none;
        }
    
        a {
          text-decoration: none;
          color: #333;
        }
    
        img {
          /* 
          问题的现象:图片和容器底部有一些空隙
          内联元素的对齐方式是按照文字极限对齐的,而不是文字底线对齐的;
          vertical-align: baseline; 基线对齐方式,默认值
          img {vertical-align: bottom;} 推荐
           */
          vertical-align: bottom;
        }
    

    相关文章

      网友评论

          本文标题:css reset

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