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

:before /:after伪元素默认是一个行内元素,所以这个元素设置width/height是无效的
就像你对a元素设置width/height一样

你可以把图片设为背景图片,通过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;
}

猜你喜欢

转载自blog.csdn.net/qq_27064559/article/details/83620479
今日推荐