【发布时间】:2019-02-14 05:14:32
【问题描述】:
如何防止左列增长?希望徽标列居中,左右列占据结果空间。做了一个小提琴来演示效果。 https://jsfiddle.net/roberthenniger/1qyeghm7/
.nav-column:nth-child(1), .nav-column:nth-child(3) {
flex-grow:1;
flex-basis:50%;
}
我们有一个 javascript 来检查内容的宽度,然后更改为不同的布局,但我仍然不希望外部列增长。我知道它会增长,因为在左边还有空间。
body .nav {
display: flex;
flex-direction: row;
justify-content: center;
margin-bottom: 100px;
}
body .nav span {
white-space: nowrap;
}
body .nav .nav-column:nth-child(1) {
text-align: left;
justify-content: flex-start;
flex-grow: 1;
flex-basis: 50%;
}
body .nav .nav-column:nth-child(2) {
text-align: center;
justify-content: center;
background-color: #99CCFF;
flex-basis: 160px;
}
body .nav .nav-column:nth-child(3) {
text-align: right;
justify-content: flex-end;
flex-grow: 1;
flex-basis: 50%;
}
<div class="nav">
<div class="nav-column">
<span>Menu Links with long content but it should not overlap and not push to the right</span>
</div>
<div class="nav-column">
<span>Logo</span>
</div>
<div class="nav-column">
<span>CTA</span>
</div>
</div>
<div class="nav">
<div class="nav-column">
<span>here it looks fine</span>
</div>
<div class="nav-column">
<span>Logo</span>
</div>
<div class="nav-column">
<span>CTA</span>
</div>
</div>
【问题讨论】:
-
但这会将外部列推出容器。我们需要 white-space:nowrap 来计算元素的宽度。我们想看看它们什么时候换行,然后我们展示一个不同的视图。
标签: html css flexbox centering