一个a::before的写法

Posted 杨杨0708

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个a::before的写法相关的知识,希望对你有一定的参考价值。

#key_table table tr td a::before{//这是个a前面的蓝色小圆点
    background: #48A7D9;
    content: "";//这是before元素中的内容
    border-radius: 50%;
    display: inline-block;//这个属性很重要,如果没有这个属性,before元素将不显示
    width: 8px;
    height: 8px;
    position: relative;
    top: -1px;
    margin-right: 8px;

}

以上是关于一个a::before的写法的主要内容,如果未能解决你的问题,请参考以下文章

动态改变伪元素样式的方(用:after和:before生成的元素)

jQuery before 和 after

炫目菜单删除线加下划线

“::before”和“:before”中的双冒号和单冒号的区别

:after/::after和:before/::before的区别

:before和::before的区别