如图所示,给该 view 设置了padding: 0 10px,但右内边距不起作用
我们需要使用 box-sizing: border-box;改一下全局的样式
box-sizing: border-box;
*{ box-sizing: border-box; }
调整后的效果