如何减少css中的填充? (科类)

时间:2017-08-02 16:32:08

标签: html css

如何在css

中编辑此类的填充
 <section class="wpb_row main_row  no-seperator" style="padding-top:70px; padding-bottom:70px;">

我尝试了这段代码,但它不起作用:

wpb_row.main_row.no-seperator
{padding-top:0px; padding-bottom:0px;}

2 个答案:

答案 0 :(得分:2)

您在css的开头错过了.

.wpb_row.main_row.no-seperator
{padding-top:0px; padding-bottom:0px;}

答案 1 :(得分:1)

css通过html样式标记绑定到该特定元素。您必须对其进行编辑或使用!important

.wpb_row.main_row.no-seperator
{padding-top:0px !important; padding-bottom:0px !important;}