search

Home  >  Q&A  >  body text

css - 关于伪类背景问题

在伪类里,添加一个background:URL()的图片,无法显示,但是在规定高度之后,可以正常显示。
具体问题就是模仿bootcss网站,在上面的大背景图中,他是after伪类,没有添加高度就显示了出来。想知道他是怎么做到的。

PHPzPHPz2841 days ago1058

reply all(3)I'll reply

  • 天蓬老师

    天蓬老师2017-04-17 14:35:11

    Use absolute positioning in pseudo-classes

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    reply
    0
  • 怪我咯

    怪我咯2017-04-17 14:35:11

    Are you talking about the URL http://www.bootcss.com/? It has padding

    reply
    0
  • 大家讲道理

    大家讲道理2017-04-17 14:35:11

    :after{content:'';display:block;width:100%;height:300px;background:url(IMG);background-size:cover;}

    reply
    0
  • Cancelreply