gpt4 book ai didi

html - 悬停在不同元素上的效果

转载 作者:太空宇宙 更新时间:2023-11-04 00:59:30 25 4
gpt4 key购买 nike

我有这样的结构:

HTML

<div class="bottom-container">
<div class="double-arrow"></div>
<div class="bottom-box green margin-top">
<h1 class="bottom-box-h1">Box title 1</h1>
<p class="bottom-box-text">It is a long established fact that a reader will be distracted by the readable content</p>
</div>
</div>

默认情况下不显示 .bottom-box-text。它有一个 display:none 属性。

当我将鼠标悬停在 .double-arrow div 上时,我需要显示 .bottom-box-text div。但我想不通。

我有这个 CSS:

.double-arrow:hover .bottom-box-text {
display: inline;
}

我尝试了不同的选择器(如“+”“~”),但它不起作用。

如有帮助,谢谢!

最佳答案

您可以使用通用兄弟选择器首先选择.bottom-box:

.bottom-box-text {
display: none;
}

.double-arrow:hover ~ .bottom-box .bottom-box-text {
display: inline;
}
<div class="bottom-container">
<div class="double-arrow">Arrow</div>
<div class="bottom-box green margin-top">
<h1 class="bottom-box-h1">Box title 1</h1>
<p class="bottom-box-text">It is a long established fact that a reader will be distracted by the readable content</p>
</div>
</div>

关于html - 悬停在不同元素上的效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53797647/

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