gpt4 book ai didi

html - 将导航栏无序列表与 flexbox 对齐

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

我正在使用 flexbox 创建导航栏 - A Codepen here .我想要导航栏左侧的 Logo 和右侧的链接。

但是我无法锻炼如何使用 flex-end 达到良好效果。我在无序列表中的链接似乎不受 flexbox 的影响。有没有一种特殊的方法可以将 flexbox 绑定(bind)到导航栏?

我的 HTML:

<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Raleway" />
<nav>
<!-- Primary Logo -->
<div id="logo">
<img src="http://www.shinetown.com.sg/shinetown/wp-content/uploads/2016/04/logo-dummy.png" alt="NewCircle">
</div>
<!-- Primary Navigation -->
<div id="navigation">
<ul>
<li class="current"><a href="#">Home</a>
<li><a href="#">Products</a>
<li><a href="#">Pricing Plans</a>
<li><a href="#">Help</a>
</ul>
</div>
</nav>

和我的 Stylus 代码:

nav-height = 100px
primary-color = #FF5B4E
primary-text-color = #444
secondary-border-color = #EEE

body {
font-family: Raleway
}

nav, nav *
display: flex
align-items: center
width: 100%

nav
height: nav-height
border-bottom: 5px solid secondary-border-color

#logo
width: 300px
height: nav-height
border-right: 1px solid secondary-border-color
padding: 0 1em 0 1em

img
max-width: 100%


#navigation
height: 100%
justify-content: flex-end

ul
list-style-type: none
padding: 0
height: 100%
margin: 0

li
height: 100%
a
height: 100%
transition: color 0.4s ease
font-weight: bold
font-size: 13px
letter-spacing: 1px
text-transform: uppercase
text-align: center
text-decoration: none
color: primary-text-color
padding: 0 18px 0 18px

a:hover
color: primary-color

.current
> a
color: primary-color

最佳答案

flex-end 不会解决它,margin-left: auto 会。

nav, nav *
display: flex
align-items: center

#navigation
height: 100%
margin-left: auto

此外,在规则中您有 nav *,这将使所有 nav 的后代具有 100% 的宽度,并且 #navigation 无法右对齐为全宽。

nav, nav * 规则中删除 width: 100% 将解决这个问题。

Updated codepen

堆栈片段

body {
font-family: Raleway;
}
nav,
nav * {
display: flex;
align-items: center;
}
nav {
height: 100px;
border-bottom: 5px solid #eee;
}
nav #logo {
width: 300px;
height: 100px;
border-right: 1px solid #eee;
padding: 0 1em 0 1em;
}
nav #logo img {
max-width: 100%;
}
nav #navigation {
height: 100%;
margin-left: auto;
}
nav #navigation ul {
list-style-type: none;
padding: 0;
height: 100%;
margin: 0;
}
nav #navigation ul li {
height: 100%;
}
nav #navigation ul li a {
height: 100%;
transition: color 0.4s ease;
font-weight: bold;
font-size: 13px;
letter-spacing: 1px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
color: #444;
padding: 0 18px 0 18px;
}
nav #navigation ul li a:hover {
color: #ff5b4e;
}
nav #navigation ul .current > a {
color: #ff5b4e;
}
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Raleway" />
<nav>
<!-- Primary Logo -->
<div id="logo">
<img src="http://www.shinetown.com.sg/shinetown/wp-content/uploads/2016/04/logo-dummy.png" alt="NewCircle">
</div>
<!-- Primary Navigation -->
<div id="navigation">
<ul>
<li class="current"><a href="#">Home</a>
<li><a href="#">Products</a>
<li><a href="#">Pricing Plans</a>
<li><a href="#">Help</a>
</ul>
</div>
</nav>


请注意,justify-content: flex-end 应该用在 flex 容器上,而不是 flex 元素上。当想要在 flex 元素上设置它时,使用 align-self: flex-end

在这种情况下,flex 具有行方向,因此 align-self 将不起作用,因为它应用于交叉轴,因此 margin-left: auto 将做这个把戏。

关于html - 将导航栏无序列表与 flexbox 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45541118/

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