未指定保证金问题?
在此页面上,标题显示顶部有页边距; 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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如我所看到的,您的
class=title
中没有问题,并且您的 h2 有以下内容:并且
url 不起作用,您可以在 h2 中添加边距。
As i can see there no problem in your
class=title
and your h2 have this:and
the url is not working and you can add margin in your h2 instead.
页面上没有这样的元素。您应该编辑
.title h2
而不是.post h2
。There's no such element on the page. You should edit
.title h2
instead of.post h2
.显示默认边距(根据浏览器的不同而变化);如果您想编辑边距,请使用
.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 generich2
(line 405 of style.css according to FireBug - this will alter all<h2>
s on the site though).