Css
Flex
横向,第一列自适应,第二列第三列固定宽
.item{
display: flex;
}
.col1{
flex: auto;
}
.col2,.col3{
width: 100rpx;
}
多个子dom,上下居中
.item {
display: flex;
justify-content: center;
flex-direction: column;
}
横向,第一列自适应,第二列第三列固定宽
.item{
display: flex;
}
.col1{
flex: auto;
}
.col2,.col3{
width: 100rpx;
}
多个子dom,上下居中
.item {
display: flex;
justify-content: center;
flex-direction: column;
}