我已經有一個div並將:before
和:after
作爲內容應用。這是完美的。現在我需要應用背景圖片,以便在div
調整大小時重複該操作,但似乎不起作用。 :before
和:after
上的背景圖像是否應該起作用?:之前和背景圖像...應該工作嗎?
當前的代碼:
HTML:
<div id="videos-part">test</div>
CSS:
#videos-part{
background-color: #fff;
height: 127px;
width: 764px;
margin: -6px 0 -1px 18px;
position: relative;
}
#videos-part:before{
width: 16px;
content: " ";
background-image: url(/img/border-left3.png);
position: absolute;
left: -16px;
top: -6px;
}
您的代碼粘貼到你的問題。 – BoltClock
用我的代碼更新了問題 – Michi
我的問題缺少「內容」。它需要有一些內容來應用背景。 – Neolisk