我一直在使用:之前或之後:CSS技巧(在本文中解釋:http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-multiple-borders-with-simple-css/)實現多個邊框和背景。它在div
元素上效果很好,但我注意到它根本不適用於圖像。:之前和之後:圖像上的多邊框/背景技巧?
這裏是我的代碼:
.author img {
position: absolute;
left: 10px;
background-color: #fff;
padding: 3px;
border: 1px solid #d0d0d0;
width: 48px;
}
.author img:before {
content: '';
display: block;
width: 80px;
height: 16px;
position: absolute;
top: -17px; left: 0;
background: red;
}
有沒有用這一招上的圖像的方式或將我包裹我的圖片附加DIV?
不確定,但嘗試給圖像'顯示:塊'以及 – 2010-08-28 11:11:13
不,沒有改變任何東西。 – Justine 2010-08-28 17:15:04