gpt4 book ai didi

html - 嵌套固定位置

转载 作者:行者123 更新时间:2023-11-28 02:57:14 25 4
gpt4 key购买 nike

我的 html/CSS 模式有以下问题。

我有一个固定的顶部菜单(高度:110 像素)。在此固定菜单中,我试图创建一个仅在悬停时显示的购物车。为此,我使用了一个仅在光标悬停时才显示的 div。

它适用于 Firefox 和 Chrome。名为“hover-content”的 div 不在流程中。但是对于 Safari,它并没有像预期的那样工作。 div 显示但在顶部菜单内,而不是在流程之外。

Firefox's behavior

Safari's behavior

你知道我如何在 Safari 上解决这个问题吗?

预先感谢您的帮助。

辛格特维斯特

.menu-top-commander {
background-color: #FFFFFF;
height: 100px;
display: flex;
flex-direction: row;
position: fixed;
transition-duration: 0.5s;
box-sizing: border-box;
right: 0;
padding-left: 110px;
align-items: center;
overflow: hidden;
}

.menu-top-commander-texte:first-child {
margin-left: 25px;
padding: 10px 10px 10px 0;
font-size: 25px;
color: #CE3734;
border-right: solid;
border-width: 1px;
}

.menu-top-commander-texte:nth-child(2) {
width: 100%;
}

.menu-top-commander-texte .menu-top-commander-texte-lien {
display: inline-flex;
padding: 10px 10px 10px 10px;
overflow-wrap: break-word;
word-wrap: break-word;
margin: 0;
font-size: 20px;
}

.menu-top-commander-texte p a {
color: #000000;
}

.menu-top-commander-smaller {
background-color: #FFFFFF;
height: 65px;
transition-duration: 0.5s;
}

.menu-top-commander-texte-lien:last-child {
float: right;
padding-right: 50px;
}

#hover-content {
display: none;
position: fixed;
background-color: #f9f9f9;
width: 200px;
min-height: 100px;
max-height: 300px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
padding: 12px 16px;
transform: translate(-200px, 50px);
overflow-y: scroll;
perspective: 1000;
}

.menu-top-commander-texte-lien:last-child:hover #hover-content {
display: block;
}

.menu-top-commander-texte-lien:last-child img {
width: 30px;
height: auto;
}

@media only screen and (max-width: 699px) {
.menu-top-commander {
display: flex;
flex-direction: column;
padding-left: 0px;
position: relative;
height: auto;
justify-content: center;
}
.menu-top-commander-texte:first-child {
margin-left: 0;
width: 100%;
border-style: none;
}
.menu-top-commander-texte {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: center;
}
.menu-top-commander-texte p {
font-size: 18px;
}
.menu-top-commander-texte-lien:last-child {
float: right;
}
}
<div class="menu-top-commander">
<div class="menu-top-commander-texte">Menu</div>
<div class="menu-top-commander-texte">
<div class="menu-top-commander-texte-lien">
<p><a href="">Plats</a></p>
</div>
<div class="menu-top-commander-texte-lien">
<p><a href="">A-Côtés</a></p>
</div>
<div class="menu-top-commander-texte-lien">
<p><a href="">Boissons</a></p>
</div>
<div class="menu-top-commander-texte-lien">
<p><a href="">Desserts</a></p>
</div>
<div class="menu-top-commander-texte-lien">
<p>
<a href=""><img src="img/icones/shopping-cart.png" alt="shopping cart"></a>
</p>
<div id="hover-content">
Content.
</div>
</div>
</div>
</div>

最佳答案

感谢您的帮助。所以,我找到了解决办法。实际上,Safari 的问题在于嵌套 div 的两个固定位置。第一个 div(父 div)有固定位置,子 div(悬停时显示)也有固定位置。

对于第一个div(父div),我尝试了粘性位置,对于第二个div(子div),我使用了固定位置。

它适用于 Chrome、Firefox 和 Safari。

谢谢你的帮助,

歌手维斯特

关于html - 嵌套固定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46382553/

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