2017-7-29

作者: 毛毛i | 来源:发表于2017-07-29 18:51 被阅读0次

    收获

    • 小div在大div里面垂直居中的方法:
    .parent {
              width:800px;
              height:500px;
              border:2px solid #000;
              position:relative;
    }
     .child {
                width:200px;
                height:200px;
                margin: auto;  
                position: absolute;  
                top: 0; left: 0; bottom: 0; right: 0; 
                background-color: red;
    }
    
    • text-transform 属性,设置文字的格式,text-transform:uppercase 代表大写字母
    • letter-spacing 属性,设置文字的字间距
    • 图标字体的使用 fontawesome
    • 做了一个PC页面,排版已经完成 链接

    打算

    把页面的媒体查询和js效果加上去

    相关文章

      网友评论

          本文标题:2017-7-29

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