我有一个表定义为
<table border="1" width="200px" height="auto">
<tr>
<td></td>
</tr>
</table>
有没有办法可以将表格对齐页面中心,将背景颜色应用到页面而不使用css进行任何这些操作?
答案 0 :(得分:7)
我认为你正在做一些像HTML电子邮件那样可怕的事情:
<center><table bgcolor="#ff00ff"></table></center>
答案 1 :(得分:1)
<center>
<table border="1" cellspacing="0" cellpadding="0" width="200" align="center">
<tr>
<td background="http://www.yourdomain.com/email/images/background.jpg" align="left">
<!-- Stuff -->
</td>
</tr>
</table>
</center>
background或td上的background属性永远不会有效。非常肯定HTML 4规范的唯一背景就是正文。但我依旧回忆起它在其他地方工作,我认为表格单元格在其他地方 - 无论它是否适用于Outlook,你只需要测试。 bgcolor对所有这些地方都有效......并且很可能有用。