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

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

Here is a fiddle.

foo bar baz

and

a.infolink::before
{
         


        
5条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-08 00:40

    I can get it to work but not using a percentage in width. Pixels work fine

    visibility: visible;
    content: "stuff";
    min-width: 29px;
    width: 100%;
    float: left;
    position: relative;
    top: -15px;
    left: 0;
    

提交回复
热议问题