1. 程式人生 > >偽類before/after中的圖片大小是不能設定的

偽類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;
}