gpt4 book ai didi

css - 水平居中下拉菜单上的 flex Angular

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

我认为 Matthew James Taylor 是这段漂亮代码的英雄:

http://matthewjamestaylor.com/blog/centered-dropdown-menus

然而,无论我如何削减它——多年来我一直这样做——我无法使菜单具有 flex 的 Angular

所以我在这里发布这个,因为我没有看到关于 SO 的解决方案,我认为社区可以从中繁荣起来。

详细信息:

悬停时,最左侧和最右侧的菜单项都会恢复为方 Angular 。我已经尝试添加一个 css 类来纠正这个问题,但是当用户滚动到子菜单区域时它们仍然恢复为正方形。

这是我的菜单,就地:http://hrmpowerwash.pro

这是我的CSS:

/* horizontal navigation bar */

/* Main menu settings */
#centeredmenu {
position:relative;
clear:both;
float:left;
z-index:1000; /* This makes the dropdown menus appear above the page content below — superceded only by alerts (z=99999) */
margin:1em 0 0 0;
padding:0;
width:100%;
font-size:90%; /* Menu text size */
text-transform:uppercase;
}

/* Top menu items */
#centeredmenu ul {
margin:0;
padding:0;
list-style:none;
float:right;
position:relative;
right:50%;
}
#centeredmenu ul li {
padding:0;
float:left;
position:relative;
left:50%;
top:1px;
}
#centeredmenu ul li a {
display:block;
margin:0;
padding:.6em .5em .4em;
font-size:1em;
line-height:1em;
text-decoration:none;
color:#FFF;
font-weight:bold;
}

/* These three classes add the white border to the top menu items. */
.leftmost {
border:#FFF 2px solid;
border-radius: 8px 0 0 8px;
background:#e68f1a;
}
.middle {
border:#FFF solid;
border-width:2px 2px 2px 0;
background:#e68f1a;
}
.rightmost {
border:#FFF solid;
border-width:2px 2px 2px 0;
border-radius:0 8px 8px 0;
background:#e68f1a;
}

#centeredmenu ul li.active a {
color:#fff;
background:#000;
}
#centeredmenu ul li a:hover { /* This is to change if we want a brand colour for menu hover instead of blue */
background:#36f; /* Top menu items background colour */
color:#fff;
border-bottom:1px solid #03f;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
background:#36f; /* Top menu items background colour */
color:#fff;
border-bottom:1px solid #03f;
}

/* Submenu items */
#centeredmenu ul ul {
display:none; /* Sub menus are hidden by default */
position:absolute;
top:2em;
left:0;
float:left;
right:auto; /*resets the right:50% on the parent ul */
width:10em; /* width of the drop-down menus */
}
#centeredmenu ul ul li {
left:auto; /*resets the left:50% on the parent li */
margin:0; /* Reset the 1px margin from the top menu */
clear:left;
float:left;
width:100%;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
font-size:.8em;
font-weight:normal; /* resets the bold set for the top level menu items */
background:#eee;
color:#444;
line-height:1.4em; /* overwrite line-height value from top menu */
border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
float:left;
width:100%;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
background:#36f; /* Sub menu items background colour */
color:#fff;
float:left;
}

/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
left:auto; /* reset left:0; value */
right:0; /* Set right value instead */
}
#centeredmenu ul ul.last li {
float:right;
position:relative;
right:.8em;
}

/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
display:block; /* Show the sub menus */
}

如您所见,我已将主菜单最左侧和最右侧的选项四舍五入(通过将类应用于第一个和最后一个#div ul li),但它们在悬停时消失。

在另一个版本中,我添加了以下代码来修复顶部菜单项的悬停,但当用户进入子菜单项时它仍然恢复为方 Angular :

/* These classes add rounded corners to the menu headers when they are hovered over */
.rightmost > a:hover {
border-radius:0 8px 8px 0;
}
.leftmost > a:hover {
border-radius:8px 0 0 8px;
}

请告知,如果这是可能的话;以及如何实现。我忽略了什么?

在此先感谢大家。

最佳答案

你已经非常接近了,你只需要在你的 CSS 上进行这两个额外的调用:

.rightmost > a:hover, .rightmost:hover > a {
border-radius:0 8px 8px 0;
}
.leftmost > a:hover, .leftmost:hover > a {
border-radius:8px 0 0 8px;
}

注意添加的 .rightmost:hover > a.leftmost:hover > a

现在这将使 a 保持圆 Angular ,即使在下拉菜单悬停时也是如此。

我还建议为每个添加 -webkit-border-radius CSS 以提高浏览器兼容性。

关于css - 水平居中下拉菜单上的 flex Angular ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39298900/

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