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

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

Here is a fiddle.

foo bar baz

and

a.infolink::before
{
         


        
5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-08 00:32

    Use this if you have image in container or CSS white-space: nowrap; property

    body::before{ 
        content:url(https://i.imgur.com/LJvMTyw.png);
        transform: scale(.3);
    }
    

提交回复
热议问题