这是链接
当您将鼠标悬停在“TUI Exclusive Offering”下的四个图像框上时,您将获得问题标题中描述的效果。
html:
<div class="maindiv">
<img src="img/img.jpg" />
<div class="lower_div">
this is the lower div1<br>
this is the lower div2<br>
this is the lower div3<br>
this is the lower div4<br>
this is the lower div5<br>
this is the lower div6<br>
</div>
</div>
使lower_div
坐在底部的方法是使其位置absolute
和bottom 0
。但无论出于何种原因,在我的大 html 页面中,尽管它在仅包含此代码段的另一个 html 页面中确实有效,但该技术不起作用。
所以我正在寻找另一种让 div 位于底部的方法。此外,我还需要让它完全显示在鼠标悬停上。
如何实现那些?