XHTML 列填充错误
尝试将 的 padding 设置为大于 1px,不行。
您只能为此 td 指定 0 或 1px 填充。但为什么 ?过渡文档类型和严格文档类型都是相同的。
Try setting the padding of <td>
to more than 1px, you can't.
You can only specify 0 or 1px padding for this td. But why ? It's same in both transitional and strict document types.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能没有定义填充的单位。将其设置为类似
10px
(至少在 Chrome 中)效果很好。It is probably that you are not defining the unit for the padding. setting it something like
10px
(in chrome at least) works fine.也许是因为您将填充指定为
1
- 无单位 - 而不是1px
、1em
等。可以指定
0
没有单位,因为0
在任何单位中都是相同的 - 但不是 1。Maybe because you're specifying the padding as
1
- no units - rather than1px
,1em
, etc.It's fine to specify
0
without units, as0
is the same in any unit - but not 1.