0
How to set the table border color in HTML?
I used bgcolor="" within the border tag and whole table became black. Please help
4 Réponses
+ 8
Unfortuantely, the methods of changing border colors in HTML is quickly becoming obselete in many browers.
Now we use CSS. For example .
table{
border: 1px solid black;
}
Hope this helps!!
+ 7
Satnam Singh The HTML way is not supported in some browers now. Best to get into habit of CSS 😁