+ 1
How to make the elements float to the left
3 ответов
+ 4
David Forero this is how it is done:
<!--HTML Code-->
<div class="first">
<p>Element to be floated</p>
</div>
/*CSS code*/
.first{
float:left;
}
Also go through the lesson below:
https://www.sololearn.com/learn/CSS/1115/
+ 1
Tq <3
+ 1
Tq <3