+ 1
How can we give a <div> effects it should be beautiful and nice
Tell me as well as possible
1 Respuesta
+ 7
Give an id to that div, and use css to make it look as you want.
Html:
<div id = "myDiv">
...
</div>
Css:
#myDiv{
background-color:red;
}