未指定保证金问题?

发布于 2024-11-07 16:55:10 字数 400 浏览 0 评论 0原文

此页面上,标题显示顶部有页边距; 25px 的底部(当我在 Chrome 10 中使用检查元素时) - 但 CSS 看起来像这样:

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

我试图减少标题周围的顶部和底部边距。

这是问题的屏幕截图:保证金问题

On this page, the title says it has a margin top & bottom of 25px (when I use inspect element in Chrome 10) - but the CSS looks like this:

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

I'm trying to decrease the top and bottom margins around the title.

Here's a screenshot of the problem:Margin Problem

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

长伴 2024-11-14 16:55:10

正如我所看到的,您的 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;
}

url 不起作用,您可以在 h2 中添加边距。

As i can see there no problem in your class=titleand your h2 have this:

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

and

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

the url is not working and you can add margin in your h2 instead.

迷鸟归林 2024-11-14 16:55:10

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

There's no such element on the page. You should edit .title h2 instead of .post h2.

兲鉂ぱ嘚淚 2024-11-14 16:55:10

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

The <h2> is displaying a default margin (which varies depending on the browser); if you want to edit the margin, use .title h2 or the generic h2 (line 405 of style.css according to FireBug - this will alter all <h2>s on the site though).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文