不同表格中的表格单元格宽度不一致
我有三个不同的表格,它们应用了完全相同的样式规则,但奇怪的是,第二列的宽度随着每个后续表格的减小而减小。
规则如下:
#content table {
font-size: 0.875em;
border-collapse: collapse;
}
#content th {
font-size: 1.125em;
margin-top: 0.5em;
}
#content tr {
border-bottom: 1px dotted #959da5;
}
#content tr:nth-child(even) {
background: #dfe5e9;
}
#content tr:last-child {
border: none;
}
#content td {
vertical-align: top;
padding: 1em 0.5em;
}
#content td:first-child {
width: 33%;
}
#content td:last-child {
width: 66%;
}
这是相关页面的链接: http://cisdl.org/gonthier/about-judge-gonthier/judgments。 html
发生在 Webkit 和 Firefox 中。可能是什么原因造成的?
PS我发现bug后才添加了固定宽度,但没有帮助。
I have three different tables that have the exact same style rules applied to them, and yet bizarrely, the width of the second column decreases with each subsequent table.
Here are the rules:
#content table {
font-size: 0.875em;
border-collapse: collapse;
}
#content th {
font-size: 1.125em;
margin-top: 0.5em;
}
#content tr {
border-bottom: 1px dotted #959da5;
}
#content tr:nth-child(even) {
background: #dfe5e9;
}
#content tr:last-child {
border: none;
}
#content td {
vertical-align: top;
padding: 1em 0.5em;
}
#content td:first-child {
width: 33%;
}
#content td:last-child {
width: 66%;
}
And here is the link to the page in question:
http://cisdl.org/gonthier/about-judge-gonthier/judgments.html
Happens in Webkit and Firefox. What could be causing this?
P.S. I only added a fixed width after I discovered the bug, but it didn't help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于某种原因(我猜是边距或填充),你的两个宽度声明相互矛盾。只要删除其中之一就可以了。
像这样:
For some reason (I'm guessing margin or padding) your two width statements contradict each other. Just remove one of them you are fine.
Like this: