CSS COURSE • LESSON
🌊 CSS Float
Master CSS and create modern responsive websites with EDUHUB CODE HUB.
CSS Float
Float is used for positioning elements beside each other.
img {
float:left;
}
Clear Float
.clear {
clear:both;
}