+ 10
What's the difference between "bg-color" and "background-color"?
4 Answers
+ 2
The bgcolor attribute was superseded by CSS in 1996.
CSS background properties:
Are more reusableHave a higher priority than presentational attributesTake a wider selection of values (including translucent ones)Can be stored in an external stylesheet and cached between requestsApply more consistently across different element types
+ 6
# bgcolor is a HTML attribute.
# background-color is a CSS property.
+ 4
bgcolor specifies document background color, background-color--background color of an element
+ 1
bgcolor attribute from html background-color property from css