伪元素

作者: child_cool | 来源:发表于2018-04-27 16:26 被阅读5次
    /*动态添加一个行元素*/
            /*before 前 div内容 after 后*/
            div:before,div:after {
                content: "after 伪元素";
                color: gray;
                width: 50px;
                height: 50px;
                display: block;
                background-color: yellow;
            }
            
            /*选中区域设置*/
            div::selection {
                background-color: red;
            }
    

    相关文章

      网友评论

          本文标题:伪元素

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