搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Border Color

  • 2 回覆
  • 7 有這個問題
  • 15 次檢視
  • 最近回覆由 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 於 修改