Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当div元素悬停(鼠标悬停)时,如何隐藏div元素上方的表格元素
仅 CSS **
提前致谢
我编辑了你的小提琴,按照你的要求工作:小提琴。(注意类“重叠”)
<div class="overlap" style=""> test </div>
CSS:
.overlap { background-color:red; top:-65px; margin:2px; display:block; } .overlap:hover{ top:-160px; padding-top:95px; }