flex弹性布局中justify-content:space-between 不起作用

需求

商品卡片价格与加购按钮如下分布:

flex弹性布局中justify-content:space-between 不起作用_第1张图片

 实际效果

flex弹性布局中justify-content:space-between 不起作用_第2张图片

技术方案

display: flex;
flex-direction: row;
justify-content: space-between;

解决思路

1.如果有margin:0 auto, 去掉即可

2.设置宽度width

解决方案

本身已经设置了margin,继而设置宽度width,问题解决,在设置width的时候有两种方式:

1.固定值

2.width:inherit  (继承)

根据具体业务需求,可进行设置

你可能感兴趣的:(css,css,前端,html)