通过内联样式

时间:2016-09-06 13:37:10

标签: html css

在我的外部CSS文件中,我将所有<h3>元素的样式设置为margin-bottom: 0;

我如何使用内联样式为某个<h3>元素提供其默认保证金?以下代码未向<h3>元素提供其默认边距。

h3 {
  margin-bottom: 0px;
}
<h3>This has no margin.</h3>
<h3 style="margin-bottom: auto;">This should have it's default margin.</h3>

2 个答案:

答案 0 :(得分:2)

您可以添加特定的类,而不是内联css,并在您不想要定位的元素上使用not css选择器:

h3:not(.noborder) {
  margin-bottom: 0px;
}

<h3>This has no margin.</h3>
<h3 class="noborder">This should have it's default margin.</h3>

答案 1 :(得分:-1)

您可以通过关键字initial重置该值。 在此处阅读更多相关信息:http://www.w3schools.com/cssref/css_initial.asp