我的 HTML 表格产生了奇怪的间隔结果
我正在更新一个使用嵌套表格在特定页面上布置一堆徽标图像的网站。 该页面可以在此处查看: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
第一列的大小适合“能源部门”。在标题单元格上设置
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.能源部门的
td
没有设置 colspan。能源部门
The
td
for Energy Sector has no colspan set.<td colspan="4"><p class="services">Energy Sector</p></td>
您的标题(例如“能源部门”)位于第一列中,但不适合。因此它扩展了第一列。
添加
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