0
whAT IS THE THE USE OF <DIV> TAG
U
2 Respostas
+ 1
Mainly used to define an structure/“object”. For example
<div class=“card”>
<img src=“url” >
<p>
</p>
</div>
Now with css i could easily move the card object around and style the contents inside.
In JS you could could also have so that you read from some file / api and create a bunch of these on the fly
0
THANKS