as shown in the picture, the effect is that the mouse moves over the picture, the picture is hidden, and the corresponding introduction is displayed.
<li>
<div><img src=""/></div>
<div></div>
</li>
<li>
<div><img src=""/></div>
<div></div>
</li>
the method used now is to set the parent element li to position:relative;2 child elements to set absolute positioning position:absolute;, when the mouse moves over the parent element to change the child element zmuri index, the text part is displayed. But where there is a lot of text, it will be blocked by the following li element, which is only the size of the parent element, because the other li positioning is position:relative.
excuse me: how can the text display be completely unblocked when the mouse is moved up?