+ 1
When i will use bgcolor and when background-color ?
2 Respuestas
+ 1
The attribute bgcolor of body, as far as I know, is not used anymore. Use background-color or background on CSS instead:
element {
background: #FFF;
}
0
Also you can use css background-color in html.
for example :
<div style:'background-color:#FFF'></div>