搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Border Color

  • 2 个回答
  • 7 人有此问题
  • 20 次查看
  • 最后回复者为 moni_66

more options

It seems that FF 4 made some changes in the rendering of tables forcing the border colors to be equal to the font color in them.

Requisites: I want to build a table with a Green border I want my header to be written in Red I want my cells to be written in Black I want my footer to be written in white in a gray background

When FF4 renders this it screws up the borders of the table. In older versions of FF and in all versions of IE the border shows Green. In FF 4 the table border has 4 colors. Green on Top and Bottom, White, Black and Red in the sides depending on the row it is.

You can see an example here: http://dl.dropbox.com/u/7520799/HTMLPage.htm

It seems that FF 4 made some changes in the rendering of tables forcing the border colors to be equal to the font color in them. Requisites: I want to build a table with a Green border I want my header to be written in Red I want my cells to be written in Black I want my footer to be written in white in a gray background When FF4 renders this it screws up the borders of the table. In older versions of FF and in all versions of IE the border shows Green. In FF 4 the table border has 4 colors. Green on Top and Bottom, White, Black and Red in the sides depending on the row it is. You can see an example here: http://dl.dropbox.com/u/7520799/HTMLPage.htm

由dvinagre于修改

所有回复 (2)

more options

Some of the border-collapse behavior appears to have changed.

If you use this (add the id to your table tag and remove your inline style attribute):


#tbltest { border-style: solid; border-color: green; border-width: 1px; border-collapse:collapse; } #tbltest td { border-style: solid; border-color: auto; border-width: 1px; }

Then the cell borders, with colors matching their contents, override the table border. Firefox 3.6 and 4 appear to agree there.

However, if you switch to the supposedly equivalent shortcut properties, then Firefox 3.6 changes display to what you want while Firefox 4 uses more of the cell-level coloring.


#tbltest { border: 1px solid green; border-collapse:collapse; } #tbltest td { border: 1px solid auto; }

So Firefox 4 appears to have broken a (possibly non-standard) behavior that you and others may have relied on in mixing CSS and the border attribute. The solution, I think, is to set the border color for the td elements explicitly in CSS rather than relying on border="1" to propagate the color from the table element.

more options

Using this kind of code, the borders and text color appears correct: look to the image attached for html code

由moni_66于修改