CSS clear Property

You are Here:

CSS clear Property

CSS clear property sets whether an element must be cleared floating elements that precede it.

Note: The clear property applies to floating and non-floating elements.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ width: 125px; height: 100px; float: left; } #point{ clear: left; } </style> </head> <body> <h1>CSS clear Property</h1> <img src="car-left.png"> <p> This is first paragraph.</p> <p id="point"> This is second paragraph.</p> </body> </html>

Syntax

Using CSS

element{ clear: both; }

Using Javascript

object.style.clear="both";

Animatable

No, clear property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS clear property is none.

Property Value

The following table provides a list of values for CSS clear property.

ValueExplanation
noneSpecifies that the element is not moved down to clear past floating elements.
leftSpecifies that the element is moved down to clear past left floats.
rightSpecifies that the element is moved down to clear past right floats.
bothSpecifies that the element is moved down to clear past both left and right floats.

Using JavaScript

In the following example, we will demonstrate how to change the CSS clear property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> img{ width: 125px; height: 100px; float: right; } </style> </head> <body> <h1>CSS clear Property</h1> <img src="car-left.png"> <p> This is a paragraph.</p> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("p")[0]; function myFunction(){ x.style.clear = "right"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author