想象一下以下布局,其中圆点表示框之间的空间:
[Left box]......[Center box]......[Right box]
当我移除右边的盒子时,我喜欢中心盒仍然位于中心,如下所示:
[Left box]......[Center box].................
如果我删除左框也是如此。
................[Center box].................
现在,当中心框内的内容变得更长时,它将占用尽可能多的可用空间,同时保持居中。左右盒子永远不会缩小,因此当没有空间的地方时,overflow:hidden
和text-overflow: ellipsis
将有效打破内容;
[Left box][Center boxxxxxxxxxxxxx][Right box]
以上都是我理想的情况,但我不知道如何实现这个效果。因为当我创建一个像这样的flex结构时:
.parent {
display : flex; // flex box
justify-content : space-between; // horizontal alignment
align-content : center; // vertical alignment
}
如果左右框的大小完全相同,我会得到所需的效果。然而,当两者中的一个来自不同尺寸时,居中的盒子不再真正居中。
有没有人可以帮助我?
更新
一个justify-self
会很好,这将是理想的:
.leftBox {
justify-self : flex-start;
}
.rightBox {
justify-self : flex-end;
}
如果左右框的大小完全相同,我会得到所需的效果。然而,当两者中的一个是不同尺寸时,居中的盒子不再真正居中。有没有人可以帮助我?
这是一种使用flexbox将中间项目居中的方法,无论兄弟姐妹的宽度如何。
主要特点:
使用嵌套的flex容器和auto
边距:
.container {
display: flex;
}
.box {
flex: 1;
display: flex;
justify-content: center;
}
.box:first-child > span { margin-right: auto; }
.box:last-child > span { margin-left: auto; }
/* non-essential */
.box {
align-items: center;
border: 1px solid #ccc;
background-color: lightgreen;
height: 40px;
}
p {
text-align: center;
margin: 5px 0 0 0;
}
<div class="container">
<div class="box"><span>short text</span></div>
<div class="box"><span>centered text</span></div>
<div class="box"><span>loooooooooooooooong text</span></div>
</div>
<p>↑<br>true center</p>
以下是它的工作原理:
.container
)是一个flex容器。.box
)现在都是一个弹性项目。.box
项目都给予flex: 1
,以便平均分配容器空间(more details)。justify-content: center
。span
元素都是一个居中的弹性项目。auto
边距向左和向右移动外部span
s。你也可以放弃justify-content
并专门使用auto
边距。
但justify-content
可以在这里工作,因为auto
利润总是优先考虑。
8.1. Aligning with
auto
margins在通过
justify-content
和align-self
进行对齐之前,任何正的自由空间都会分配到该维度的自动边距。
flex: 1
设置为第一个和最后一个。这使它们平等地增长以填充中间留下的可用空间。min-width: auto
初始值,该Flex项目也将增长。
注意Chrome似乎没有正确实现此功能。但是,您可以将min-width
设置为-webkit-max-content
或-webkit-min-content
,它也可以。.outer-wrapper {
display: flex;
}
.item {
background: lime;
margin: 5px;
}
.left.inner-wrapper, .right.inner-wrapper {
flex: 1;
display: flex;
min-width: -webkit-min-content; /* Workaround to Chrome bug */
}
.right.inner-wrapper {
justify-content: flex-end;
}
.animate {
animation: anim 5s infinite alternate;
}
@keyframes anim {
from { min-width: 0 }
to { min-width: 100vw; }
}
<div class="outer-wrapper">
<div class="left inner-wrapper">
<div class="item animate">Left</div>
</div>
<div class="center inner-wrapper">
<div class="item">Center</div>
</div>
<div class="right inner-wrapper">
<div class="item">Right</div>
</div>
</div>
<!-- Analogous to above --> <div class="outer-wrapper"><div class="left inner-wrapper"><div class="item">Left</div></div><div class="center inner-wrapper"><div class="item animate">Center</div></div><div class="right inner-wrapper"><div class="item">Right</div></div></div><div class="outer-wrapper"><div class="left inner-wrapper"><div class="item">Left</div></div><div class="center inner-wrapper"><div class="item">Center</div></div><div class="right inner-wrapper"><div class="item animate">Right</div></div></div>
你可以这样做:
.bar {
display: flex;
background: #B0BEC5;
}
.l {
width: 50%;
flex-shrink: 1;
display: flex;
}
.l-content {
background: #9C27B0;
}
.m {
flex-shrink: 0;
}
.m-content {
text-align: center;
background: #2196F3;
}
.r {
width: 50%;
flex-shrink: 1;
display: flex;
flex-direction: row-reverse;
}
.r-content {
background: #E91E63;
}
<div class="bar">
<div class="l">
<div class="l-content">This is really long content. More content. So much content.</div>
</div>
<div class="m">
<div class="m-content">This will always be in the center.</div>
</div>
<div class="r">
<div class="r-content">This is short.</div>
</div>
</div>
使用网格而不是默认使用flexbox,而是在2行CSS中解决它,而不会在顶级子级中添加额外的标记。
HTML:
<header class="header">
<div class="left">variable content</div>
<div class="middle">variable content</div>
<div class="right">variable content which happens to be very long</div>
</header>
CSS:
.header {
display: grid;
grid-template-columns: [first] 20% auto [last] 20%;
}
.middle {
/* use either */
margin: 0 auto;
/* or */
text-align: center;
}
Flexbox摇滚,但不应该是一切的答案。在这种情况下,网格显然是最干净的选择。
甚至为您的测试乐趣制作了一个编码器:https://codepen.io/anon/pen/mooQOV