width and height doesn't seem to work on :before pseudo-element

后端 未结 5 1574
小鲜肉
小鲜肉 2020-12-08 00:20

Here is a fiddle.

foo bar baz

and

a.infolink::before
{
         


        
5条回答
  •  南笙
    南笙 (楼主)
    2020-12-08 00:42

    add display:block;

    demo

    p > a.infolink::before {
        display:block;
        content:'?';
        background: blue;
        color: white;
        width: 20ex;
        height: 20ex;
        border:1px solid #000;
    }
    

提交回复
热议问题