定义列表格式不按预期工作

时间:2015-01-16 22:07:44

标签: html css wordpress formatting wordpress-theming

通过尝试复制我喜欢的产品页面,我了解了更多有关定义列表的信息。

正确添加了标签,发现它们有一些自然风格。

我在google上找到了这个代码,并将其添加到我主题的custom.css文件中,并且它没有改变任何内容。

dt {
    font-weight: bold;
    text-decoration: underline;
  }
  dd {
    margin: 0;
    padding: 0 0 0.5em 0;
  }

任何人都可以告诉我为什么吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

有些代码会很好,将代码复制到jsfiddle并设置示例。可能它被默认样式覆盖了尝试添加!对css属性很重要。

dt {
    font-weight: bold important;
    text-decoration: underline important;
  }
  dd {
    margin: 0 !important;
    padding: 0 0 0.5em 0 important;
  }

这将覆盖任何css属性,但您应该仅将其用于测试。