学习CSS

作者: 谨言_慎行 | 来源:发表于2017-10-11 15:56 被阅读0次

    学习地址-http://zh.learnlayout.com

    1. 使用max-width来代替width
    2. 设置盒模型 box-sizing: border-box
    3. 关于固定定位 position:fixed
      1. 使用<header> <footer> 后要确保有足够空间来显示body内容,给body设置margin-topmargin-bottom
      2. 待续...
    4. 百分比宽度可以用来为图片设置宽高,这样就可以根据其父元素宽高变化而变化,父元素宽度用max-width
    5. 更好的实现响应式布局可以用媒体查询@media screen and (min-width:600px) {}
    6. 实现文字的多列布局 下面是3列布局
    .three-column {
      padding: 1em;
      -moz-column-count: 3;
      -moz-column-gap: 1em;
      -webkit-column-count: 3;
      -webkit-column-gap: 1em;
      column-count: 3;
      column-gap: 1em;
    }
    
    1. 移动端input placeholder 偏上问题 line-height:normal

    相关文章

      网友评论

          本文标题:学习CSS

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