首页 > 解决方案 > Woocommerce checkout decrease spaces between fields

问题描述

I have a woocommmerce store with a checkout where the fields have a lot of space between them. I would like to decrease the space through CSS. Can't find any information about this and I've tried many different codes found online, but they were too I guess.

标签: wordpresswoocommerce

解决方案


尽可能使用特定的选择器。

.woocommerce form p.form-row{
    margin: 0 0 5px;
}
.woocommerce form p.form-row label{
    margin: 0 0 5px;
}

最后一个值是顶部和底部边距,因此更小 = 更靠近。


推荐阅读