0
How can I code a div having width options??
is there any tag for a div having width and height options???
2 ответов
+ 2
Use CSS 'width' and 'height' properties:
<div style="width:100px; height:100px; background:red;"></div>
0
use CSS properties width and height like
<div style="width:100px; height:100px;"></div>
or you can use CSS properties position like:
<div style="position: absolute;top: 150px;right: 50px;left: 50px;"></div>