css样式调整元素水平靠边

调整元素靠边(上下左右)

.list{
  margin-left: 20rpx;
  height: 110rpx;
  border-bottom: 1rpx solid #e2e2e3;
 
}
.list{
  margin-left: 20rpx;
  height: 110rpx;
  border-bottom: 1rpx solid #e2e2e3;
  display: flex;
  /*水平分布在两边*/
  justify-content: space-between;
}

display: flex;
/水平分布在两边/
justify-content: space-between;
它会把子元素靠边对齐平均分剩余的内容
 

猜你喜欢

转载自blog.csdn.net/m0_51660523/article/details/119743074