不同表格中的表格单元格宽度不一致

发布于 2024-11-28 21:11:54 字数 813 浏览 1 评论 0原文

我有三个不同的表格,它们应用了完全相同的样式规则,但奇怪的是,第二列的宽度随着每个后续表格的减小而减小。

规则如下:

#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 技术交流群。

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

发布评论

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

评论(1

¢好甜 2024-12-05 21:11:54

由于某种原因(我猜是边距或填充),你的两个宽度声明相互矛盾。只要删除其中之一就可以了。


像这样:

#content td:first-child {
    width: 33%;
}

#content td:last-child {
}

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:

#content td:first-child {
    width: 33%;
}

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