0
I can apply( in div element ) a background color and How ?
4 Respostas
+ 1
in test.css for example
div{
    background: red;
    color: white;
}
0
how about background-color ?
0
I think...
0
There are two ways to apply background color in div element. 
div {
 background:red;
color:dodgerblue;
}  or 
<div style="background-color:red;">Red background </div>



