visit
One of the basic and the most important properties every web designer should learn is the float property. It is most commonly used for floating text around the image or creating the two column layout. The float property can cause a lot of frustration and confusion if it is not completely understood, so let’s make those confusions disappear with this short but thorough explanation.
When an element has float set to it, it is shifted to the right or left side until it touches the edge of the container element or another floated element.
The best place to check how well is the CSS property supported is the service. Here, we see that the float property has an extremely high support, with over 97%.
HTML
<div class=”container”> <div class=”left-segment”></div> <div class="right-segment”></div> <p class=”segment_text”>Cardigan aesthetic direct trade, migas locavore shoreditch DIY bicycle rights lyft street art bitters. Gastropub salvia flexitarian next level cold-pressed iceland williamsburg tofu biodiesel everyday carry. Direct trade selfies mixtape 8-bit jean shorts paleo. Roof party thundercats gastropub, jianbing williamsburg microdosing tbh dreamcatcher crucifix. Fingerstache crucifix shoreditch, kitsch selfies tumblr everyday carry aesthetic. Narwhal readymade cardigan gentrify.</p> </div>
CSS
.container { border: solid thin #ccc; } .left-segment { height: 200px; width: 200px; background-color: #C98EED; float: left; } .right-segment { height: 200px; width: 200px; background-color: #8FC9FF; float: right; }
In this example, we can see the two divs floated to the right and the left side of the container. The text is flowing around the divs and continuing below it.
Afterwards, we can give the elements and the text .HTML
<div class=”container”> <div class=”left_segment”></div> <div class=”left_segment”></div> <p class=”segment_text”>Cardigan aesthetic direct trade, migas locavore shoreditch DIY bicycle rights lyft street art bitters. Gastropub salvia flexitarian next level cold-pressed iceland williamsburg tofu biodiesel everyday carry. Direct trade selfies mixtape 8-bit jean shorts paleo. Roof party thundercats gastropub, jianbing williamsburg microdosing tbh dreamcatcher crucifix. Fingerstache crucifix shoreditch, kitsch selfies tumblr everyday carry aesthetic. Narwhal readymade cardigan gentrify.</p> </div>
CSS
.container { border: solid thin #ccc; } .left-segment { Height: 200px; Width: 200px; Margin-right: 10px; Background-color: #A1ED8E; Float: left; }
The second example shows how two divs are floated to the left side of the container using the float:left property and how the text flows around those divs and continues below them.
Hopefully, this article will be useful when working with the float property.
Stay tuned for the article that will further explain the clear property, another extremely important property that is in tight relations with the float property.
Other important properties, other than float, include the and the . Until next time!Originally published at on March 15, 2018.