美文网首页
CSS 小知识点锦囊

CSS 小知识点锦囊

作者: 定格r | 来源:发表于2019-08-03 11:43 被阅读0次
    • 让 容器中的内容横向显示
     display: flex;
    
    • 让容器中的内容垂直居中
    align-content: center;  //或者
    align-items:center
    
    • 让容器中的内容水平居中
    justify-content: center;
    
    • 制作小三角形
               .ss::after{
                   content: '';
                   position:absolute; 
                   border-top: 20px solid red;
                   border-right: 20px solid transparent;
                   border-bottom: 20px solid transparent;
                   border-left: 20px solid transparent;
    
               }
    

    效果:


    image.png

    相关文章

      网友评论

          本文标题:CSS 小知识点锦囊

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