gpt4 book ai didi

html - 悬停 img 以显示绝对定位的 div 不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 03:56:06 27 4
gpt4 key购买 nike

我正在尝试显示绝对定位的 div #menu,默认状态 top: -9999px; left: -9999px 在用户将鼠标悬停在图像上之后(因此它应该类似于 top: 100px; left: 20px)。

但这种方式对我不起作用。

看看我的 JSFiddle,可能有一些错误:

这是我的CSS:

#menu{
height: 350px;
width: 280px;
position: absolute;
left: -9999px;
top: -9999px;
background-color: lightblue;
}

Here is my Fiddle

我该如何解决这个问题?

最佳答案

这里有一些东西可以帮助您获得所需的东西:

DIV

<div class="menu">
hi
</div>

CSS

 .menu {
margin: 10px;
width: 50px;
height: 50px;
background-color: #06F;
color: #fff;
position: absolute;
left: 10px;
top: 0;
}

.menu:hover {
position: absolute;
left: 0;
top: 0;
}

DEMO

关于html - 悬停 img 以显示绝对定位的 div 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22802621/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com