填充未显示?

发布于 2024-11-08 21:19:45 字数 229 浏览 0 评论 0原文

在此页面上,主要部分 (a.event) 中照片下方的文字未显示顶部和底部的 5px 内边距。有什么想法吗?谢谢大家=)

a.event {
width:315px;
height:auto;
border:0;
padding: 5px 0;
}

On this page, the text under the photos in the main section (a.event) isn't showing the 5px padding top and bottom. Any ideas why? Thanks guys =)

a.event {
width:315px;
height:auto;
border:0;
padding: 5px 0;
}

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

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

发布评论

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

评论(2

z祗昰~ 2024-11-15 21:19:45

您的 a 标签围绕图像和文本。因此内边距出现在图像上方和文本下方。

Firebug 是一个用于检查正在呈现的 HTML 的好工具。查找此类错误变得微不足道。

Your a tag is wrapping around the image and the text. So the padding appears above the image and below the text.

Firebug is a good tool for inspecting the HTML that's being rendered. It makes it trivial to find these kinds of errors.

十二 2024-11-15 21:19:45

...

包裹文本,

然后在你的 css 中:

a.event p {
padding: 5px 0;
}

wrap the text with <p>...</p>

then in your css:

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