css - 伪类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都没变化.
问题解答
回答1:你可以把图片设为背景图片,通过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;}回答2:
:before /:after伪元素默认是一个行内元素,所以这个元素设置width/height是无效的就像你对a元素设置width/height一样设置position: absolute;后这个元素的display属性计算为block值;但是设置的width/height针对的是:before/:after生成的匿名替换元素,而不是其中的content所以图片的大小是没有效果的
相关文章:
1. 引用 node.js express加载 静态文件 报错 ??2. javascript - 引入 simditor,但是显示标签,这个怎么解决。3. 如何更新/删除指定的两条或多条数据4. 优先级的问题?5. android - 目前有哪些用Vue.js开发移动App的方案?6. 搭建一个用户间相互博弈的网站7. mysql_replication - mysql读写分离时如果单台写库也无法满足性能怎么解决8. node.js - 利用vue-cli 构建执行到npm run dev 报错,求解~9. mysql 一个sql 返回多个总数10. vue.js - weex 没有背景图片属性怎么办?