开发者社区 问答 正文

伪类before/after中的图片大小是不是不能设置的?

    center_box:before{
        content:url(http://localhost/quding/photos/u14.png);
        position: absolute;
        width:1000px;
        height:200px;
        z-index: 100;
        top: -110px;
    }

随我怎么调width,height都没变化.

展开
收起
杨冬芳 2016-06-08 13:28:16 2529 分享 版权
1 条回答
写回答
取消 提交回答
  • IT从业

    你可以把图片设为背景图片,通过bakckground-size来设置大小

    center_box:before{
        content:'';
        background-image:url(http://localhost/quding/photos/u14.png);
        background-size:1000px 200px;
        position: absolute;
        width:1000px;
        height:200px;
        z-index: 100;
        top: -110px;
    }
    2019-07-17 19:31:43
    赞同 展开评论
问答地址: