美文网首页
css一些需要注意的杂记

css一些需要注意的杂记

作者: 俗人彭jin | 来源:发表于2019-01-13 19:12 被阅读0次

    三角形宽高为0 给1个边框,然后你修改哪里的border-bottom颜色就是那方向

    .sanjiao{width: 0;height: 0;border: 50px solid #078491;border-bottom-color: red;}
    

    清除浮动

    1. 给父级下面和他本色的伪类添加clear:both
    2. 父级设置height
    3. 父级设置overflow: hidden;
    el:after{
        content:"";
        height:0;
        position:absolute;
        clear:both;
        display:block;
    }
    el{
        zoom:1;//兼容IE
    }
    

    好看的边框阴影

    box-shadow: 0 1px 20px 0 rgba(0,0,0,.1);
    

    相关文章

      网友评论

          本文标题:css一些需要注意的杂记

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