我正在使用CSS框架Bulma(第一次),尽管我的问题可能不是Bulma所特有的,但我想我应该把它包括在内。
我有一个导航栏,该导航栏具有一组居中的链接,但也具有右对齐元素。这是屏幕截图:
您可以忽略左侧的固定叶子。我想知道如何使购物车和登录按钮正确对齐,同时使其他位居中对齐。
这是我尝试过的codepen。我只是不知道将汽车和登录信息正确对齐的正确方法。我的意思是我可以将它们绝对定位,但这听起来很愚蠢。
HTML代码
<nav class="navbar is-fixed-top">
<a href="">Products</a>
<a href="">Our Story</a>
<div id="logo">Logo placeholder</div>
<a href="">Blog</a>
<a href="">Contact Us</a>
</nav>
CSS代码
nav {
display: flex;
width: 100%;
height: 100px;
align-items: center;
justify-content: center;
}
nav a {
text-decoration: none;
color: #194522;
font-weight: bold;
margin: 0 40px;
display: flex;
align-items: center;
}
nav a:hover {
color: #abcf39;
}
如何获得这样的导航?
答案 0 :(得分:1)
您可以在左侧(作为占位符)添加一个空白元素,在右侧(保留链接)添加一个空白元素并将其设置为{{1 }}。
然后使用常规的flex定位将第二个( right )容器的内容设置为右对齐。
flex:1
nav {
display: flex;
width: 100%;
height: 100px;
align-items: center;
justify-content: center;
}
nav a {
text-decoration: none;
color: #194522;
font-weight: bold;
margin: 0 40px;
display: flex;
align-items: center;
}
nav a:hover {
color: #abcf39;
}
.nav-container{
display:flex;
flex:1;
justify-content: flex-end;
}
.nav-container a {
margin:0 10px;
}
答案 1 :(得分:1)
布尔玛在navbar中有两个区域,分别称为navbar-start
和navbar-end
,用于控制对齐。只需添加一个附加类(在我的示例中为navbar-start--centered
)即可使“起始区域”适应您的需求:
.navbar-start--centered {
flex-grow: 1;
justify-content: center;
}
使用宽视口查看它-仅用于桌面。如果要将起始区域放在视口中心,则可以另外绝对定位“终止区域”。
.navbar-start--centered {
flex-grow: 1;
justify-content: center;
}
<nav class="navbar" role="navigation" aria-label="main navigation">
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-start navbar-start--centered">
<a class="navbar-item" href="">Products</a>
<a class="navbar-item" href="">Our Story</a>
<a class="navbar-item" href="https://bulma.io">
<img src="https://bulma.io/images/bulma-logo.png" width="112" height="28">
</a>
<a class="navbar-item" href="">Blog</a>
<a class="navbar-item" href="">Contact Us</a>
</div>
<div class="navbar-end">
<div class="navbar-item">
<div class="buttons">
<a class="button is-primary">
<span class="icon">
<i class="fas fa-shopping-cart"></i>
</span>
<span>Cart</span>
</a>
<a class="button is-light">
Log in
</a>
</div>
</div>
</div>
</div>
</nav>