开发者社区> 问答> 正文

伪类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 2458 0
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
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载