2
我想將鼠標懸停在div上顯示一些圖標 - 否則應將其隱藏起來。僅在翻滾時顯示圖標
這可以使用純CSS完成?或者我需要一些JavaScript?
謝謝!
即/
HTML:
<div id="text_entry">
<p>Some text here</p>
<span class="operations">
<a class="delete" href="">Delete</a> | <a class="edit" href="">Edit</a>
</span>
</div>
CSS:
.edit{
background: url('images/edit_icon.png') no-repeat;
}
.delete{
background: url('images/edit_icon.png') no-repeat;
}
.operations{
display: none;
}
完美 - 感謝! – Simon 2011-01-07 04:17:55