gpt4 book ai didi

html - 下拉标题问题

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

您好,我有 2 个 header ,如下所示:

enter image description here

当我单击通知按钮时,下拉菜单似乎破坏了页眉布局。以下是截图

enter image description here

通知下拉CSS如下

#notification_dropdown {
-webkit-box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
-moz-box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
box-shadow: 0 0px 13px rgba(20, 20, 20, 0.5);
background: white;
border: solid #888888 1px;
left: 300px;
width: 380px;
display: none;
float: left;
color: #444444;
}

我做错了什么?

最佳答案

添加相对于其父级的位置和相对于自身的绝对位置。通过这样做,它将进入布局分层,并且不会破坏您现有的布局。

像添加绝对位置一样

 #notification_dropdown {
position:absolute;
z-index:1;
}

并添加相对于其父级的位置

parent_0f_dropdown
{
position:relative;
}

关于html - 下拉标题问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17231572/

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