填充未显示?
在此页面上,主要部分 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的 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.
用
...
包裹文本,
然后在你的 css 中:
wrap the text with
<p>...</p>
then in your css: