The clear property is used to specify that which side of floating elements are not allowed to float. It sets or returns the position of the element in relation to floating the objects.
The “clear: both” means floating the elements are not allowed to float on both sides. It is used when no need of any element float on the left and right side as related to the specified element and wanted the next element only shown below. It also indicates that no other element takes up space on the left and right side.
Syntax:
clear:both;
Example:
<!DOCTYPE html>
< html >
< head >
< style >
div {
width:100px;
height:100px;
background-color:green;
color:white;
font-weight:bold;
font-size:25px;
text-align:center;
float: left;
padding:15px;
}
p.GFG {
clear: both;
}
h1 {
color:green;
text-align:center;
}
</ style >
</ head >
< body >
< h1 >GeeksForGeeks</ h1 >
< h1 >clear:both;</ h1 >
< div >< pre >GFG</ pre ></ div >
< p >GeeksforGeeks: A computer science portal for geeks</ p >
< p class = "GFG" >GeeksforGeeks</ P >
</ body >
</ html >
|
Output:

Supported Browsers: The supported browsers are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
15 Feb, 2019
Like Article
Save Article