移动端常用的单元格,经常有这样的布局,左边label,右边内容区域,当内容文字靠右时,需要一行时靠右,多行时靠左。
文章图片
实现1
单元格
内容
单元格
内容内容内容内容内容内容内容内容内容内容内容内容
.cell {
display:flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #e5e5e5;
}
.cell .cell-label {
width: 120px;
}
实现2
单元格
内容
单元格
内容内容内容内容内容内容内容内容内容内容内容内容
.cell {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #e5e5e5;
}
.cell .cell-label {
width: 120px;
}
.cell .cell-value {
flex: 1;
text-align: right;
}
.cell .cell-value .content {
text-align: justify;
display: inline-block;
}
【Notes|html文字一行时靠右,多行时靠左】实现3
单元格
内容
单元格
内容内容内容内容内容内容内容内容内容内容内容内容
.cell {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #e5e5e5;
}
.cell .cell-label {
width: 120px;
}
.cell .cell-value {
flex: 1;
}
.cell .cell-value .content {
display: flex;
justify-content: flex-end;
}
推荐阅读
- 面试|【云原生 从零开始学Docker】三、Docker实战之安装Nginx和Tomcat
- 面试|Web协议(HTTP协议)
- 面试|springboot启动报错(Failed to start bean ‘documentationPluginsBootstrapper‘)
- 面试|Hadoop总结
- vue|Vuex——Mutation传递参数
- 前端|Vuex —— 组件之间数据共享
- nginx|业务前端界面报错504排查思路和解决办法
- 微信小程序(黑马)|【微信小程序】一文读懂,数据请求
- 面试|【微信小程序】开发入门篇(一)