我的 HTML 表格产生了奇怪的间隔结果

发布于 2024-11-16 00:55:14 字数 401 浏览 0 评论 0原文

我正在更新一个使用嵌套表格在特定页面上布置一堆徽标图像的网站。 该页面可以在此处查看:http://www.ecometrix.ca/ourclients.html

每组中的第一列图像与其余图像分开,我似乎无法在 HTML 或 CSS 中找到导致问题的罪魁祸首。我真的需要一双新的眼睛。

在 Firefox 4.01、Safari 5.05、Chrome 12 和 Opera 11.11 中似乎以这种方式呈现。这让我相信这是我的代码而不是特定的浏览器。 我还没有在任何版本的 Internet Explorer 中进行测试,因为我是在 Mac 上进行的。

任何帮助都会有所帮助。

I am updating a site that has used nested tables to lay out out a bunch of logo images on a particular page.
The page can be seen here: http://www.ecometrix.ca/ourclients.html

The first column of images in each group are separated from the rest and I cannot seem to locate where in my HTML or in my CSS the culprit that is causing the problem. I really need a fresh set of eyes.

It seems to render this way in Firefox 4.01, Safari 5.05, Chrome 12, and Opera 11.11. Which leads me to believe it is my code and not a particular browser.
I have not tested in any version of Internet Explorer yet, as I am on a Mac.

Any assistance would be helpful.

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

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

发布评论

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

评论(3

温柔一刀 2024-11-23 00:55:14

第一列的大小适合“能源部门”。在标题单元格上设置 colspan="4" 以允许标题跨越整个表格宽度。

The first column is being sized to fit "Energy Sector". Set a colspan="4" on the header cells to allow the headers to span the full table width.

み格子的夏天 2024-11-23 00:55:14

能源部门的 td 没有设置 colspan。

能源部门

The td for Energy Sector has no colspan set.

<td colspan="4"><p class="services">Energy Sector</p></td>

蓝眼睛不忧郁 2024-11-23 00:55:14

您的标题(例如“能源部门”)位于第一列中,但不适合。因此它扩展了第一列。

添加 colspan="4" 将标题扩展到 4 列

Your header (e.g. 'Energy Sector') is in the first column, but dosn't fit in. Therefore it expandes the first column.

Add a colspan="4" to expand the header over 4 columns

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