Home >Web Front-end >CSS Tutorial >How to Float Three Divs Side by Side Using CSS?
Floating Three Divs Side by Side with CSS
Creating a horizontal layout of divs can be achieved by floating them side by side. While it's straightforward to do this with two divs, the question arises: how do you achieve the same effect with three or more divs?
The solution lies in defining a width for each div and applying the CSS property float: left;. This property positions the divs horizontally and forces them to flow next to each other.
To illustrate, consider the following example:
<div>
In this code, we create a parent div with a fixed width of 500px. Within it, we have three child divs, each with its own specified width. The float: left; property ensures that these child divs align horizontally.
Finally, a
element with the CSS property clear: left; is added to the end of the parent div. This clears any floating elements, ensuring that the remaining content below the three divs appears in line with the left edge of the parent div.
The above is the detailed content of How to Float Three Divs Side by Side Using CSS?. For more information, please follow other related articles on the PHP Chinese website!