栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

左,中和右对齐3个不相等的块

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

左,中和右对齐3个不相等的块

您可以考虑

flex-grow:1;flex-basis:0%
使用left和right元素,然后
text-align
在其中对齐内容。我添加了一个额外的包装器,以仅在文本周围保留背景。

诀窍是通过仅删除中间内容并将其均分为左元素和右元素来计算可用空间。

.container {  margin: 20px 0;  padding-top:10px;  background:linear-gradient(#000,#000) center/5px 100% no-repeat; }.row {  background-color: lime;  display: flex;  color: #fff;}.item:not(:nth-child(2)) {  flex-basis: 0%;  flex-grow: 1;}.item:last-child {  text-align: right;}.item span{  background-color: blue;  display:inline-block;  padding: 16px;  height:100%;  box-sizing:border-box;}<div >  <div >    <div ><span>left, slightly longer</span></div>    <div ><span>center, this item is much longer</span></div>    <div ><span>right</span></div>  </div></div>

您也可以通过使元素保持关闭来执行相同的操作。只需调整文本对齐即可:

.container {  margin: 20px 0;  padding-top:10px;  background:linear-gradient(#000,#000) center/5px 100% no-repeat; }.row {  background-color: lime;  display: flex;  color: #fff;}.item:not(:nth-child(2)) {  flex-basis: 0%;  flex-grow: 1;}.item:first-child {  text-align: right;}.item span{  background-color: blue;  display:inline-block;  padding: 16px;  height:100%;  box-sizing:border-box;}<div >  <div >    <div ><span>left, slightly longer</span></div>    <div ><span>center, this item is much longer</span></div>    <div ><span>right</span></div>  </div></div>


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/432588.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号