未指明的保证金问题?

时间:2011-05-17 08:39:32

标签: html css wordpress

this page上,标题显示它有一个上限和下限。 25px的底部(当我在Chrome 10中使用inspect元素时) - 但CSS看起来像这样:

.post h2 {
margin:0;
text-align: left;
font-size: 18px;
overflow:hidden;
font-weight:normal;
}

我正在尝试减少标题周围的上下边距。

以下是问题的屏幕截图:Margin Problem

3 个答案:

答案 0 :(得分:1)

页面上没有这样的元素。您应该修改.title h2而不是.post h2

答案 1 :(得分:1)

<h2>显示默认边距(根据浏览器的不同而不同);如果你想编辑边距,请使用.title h2或通用h2(根据FireBug,style.css的第405行 - 这将改变网站上的所有<h2>。) / p>

答案 2 :(得分:1)

我可以看到你的class=title没有问题,你的h2有这个问题:

h2 {
    color: #000000;
    font-family: HarabaraHandItalic;
    font-size: 30px;
    padding: 0 0 0 15px;
}

.title {
      background: url("images/title.jpg") no-repeat scroll 0 0 transparent;
        margin: 0 0 0 0;
        padding: 0;
}

网址无效,您可以在h2中添加保证金。