0

伙计们,我只是想制作一个带有与我的背景颜色不同的简单边框的网页。当我在 chrome 中加载网页时,它可以按我想要的方式正常工作。但如果我在 Internet Explorer 或 Firefox 中加载页面,它不会显示任何内容。我如何为 internet explore 和 firefox 解决这个问题,因为我喜欢它在 chrome 中的显示方式(它正是我想要在 chrome 中显示的方式)。这是我的代码

<html>
<body>
<table width="709" height="278" border="0" bordercolor="#000000">
<tr>
<td>&nbsp;</td>
 </tr>
</table>
</body>
</html>
4

2 回答 2

6

在您的表格中,您可以border="0"- 更改以表示所需的边框大小:

<table width="709" height="278" border="1" bordercolor="#000000">

虽然,我建议使用 CSS 来完成此操作:

table { border: 1px solid #000; }
于 2012-12-14T15:57:44.340 回答
2

您将边框设置为 0,因此 chrome 中甚至不应该有边框。

如果您将其设置为

<html>
<body>
<table width="709" height="278" border="1" bordercolor="#000000">
<tr>
<td>&nbsp;</td>
 </tr>
</table>
</body>
</html>

虽然内联样式不是最好的,所以我建议你使用外部 CSS,例如

table { border: 1px solid #000; }
于 2012-12-14T15:59:18.883 回答