Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的代码的“表格样式”部分,有没有办法调整表格中列之间的空间?另外,我应该输入什么属性来确保表格位置与左侧和顶部完全对齐?
<table style="width: 960px; height: 81px;" border="0">
对于当前和未来的兼容性,请使用 CSS:
// cellspacing table { border-collapse:separate; border-spacing: 5px; }
要确保表格与左侧和顶部对齐,请删除所有顶部和左侧边距。您可能还想根据表需要存在的位置更改定位(位置:相对或位置:绝对)。
参考:边框折叠| 边框间距
cellpadding控制单元格内部的间隙并cellspacing控制它们之间的空间。
cellpadding
cellspacing
<table style="width: 960px; height: 81px;" border="0" cellpadding="0" cellspacing="0">
至于对齐,您可以在表格单元格中控制它:
<td align="left" valign="top">
您可以尝试使用 cellspacing 属性来创建空间