1

为基本语法问题提前道歉。还在学习。我的主题默认有这个:

#main .entry h3 {padding-bottom: 15px;}

我有一类 h3 标题,我想要 padding-bottom: 0px

我无法找出正确的 css 来实现这一点。谢谢。

4

1 回答 1

3

您需要编写比#main .entry h3. 假设所讨论的 h3 元素有一个“my-class”类,您可以通过添加类名来制定更具体的规则:

#main .entry h3 {padding-bottom: 15px;}
#main .entry h3.my-class {padding-bottom: 0;}
于 2013-06-14T20:43:23.297 回答