Categories: Css

Clearing floats

Share

For a float based layout the common problem is that the container doesn’t stretch up. Try Clearing floats. For example if you want to add floats then using command the browsers it stretch up the container all the way.

Suppose we are using the below css through out the page:

 div.container {
 border: 2px solid #cccccc;
 }
 div.left {
 width: 40%;
 float: left;
 }
 div.right {
 width: 40%;
 float: right;
 }

in this case as the container div has o height then it contains floating elements. That is why the border stays at top of floating columns.

You can add a extra element with clear: both to solve this. But here is another solution:

div.container {
 border: 2px solid #cccccc;
 overflow: auto;
 width: 100%
 }

Recent Posts

Role Of Gojek Clone In Growth Campaigns For Your Business

When was the last time you heard that a clone app like Gojek could efficiently…

44 mins ago

How to Optimize Your E-Commerce Pages and Improve UX?

The e-commerce market is growing and evolving at a rapid pace. More and more people…

12 hours ago

Overview of Reputation, Services, and Features of IplWin

IplWin stands as a reliable and enthralling platform for Indian punters, offering a captivating blend…

3 days ago

Blogging Brilliance: Driving Traffic and Engagement with Quality Content

Introduction In today's online age, consumers are constantly bombarded with information. They crave valuable content…

3 days ago

How Assisted Living Gives Seniors More Freedom

In today’s rapidly aging society, finding a living situation that provides older adults with both…

3 days ago

Should you go for a Refurbished Mac?

If you wish to purchase a Mac, then it is strongly suggested to consider purchasing…

4 days ago