Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

Learn More

Border Color

  • 2 réponses
  • 7 ont ce problème
  • 15 vues
  • Dernière réponse par 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

Modifié le par dvinagre

Toutes les réponses (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

Modifié le par moni_66