Open In App

HTML | DOM Style cssFloat Property

The style cssFloat property in HTML DOM is used to set or returns the horizontal alignment of element. This property allows an element to float right or left side of the parent body with rest of the elements wrapped around it. 

Syntax:



object.style.cssFloat
object.style.cssFloat = "left|right|none|initial|inherit"

Return Values: It returns a string value that represents the horizontal alignment of an element

Property Values:



Example 1: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Style cssFloat Property
    </title>
</head>
 
<body>
    <h1 id = "GFG">GeeksForGeeks</h1>
     
    <h2>HTML | DOM cssFloat property</h2>
     
    <button onclick = "RightFloat()">
        Float right
    </button>
     
    <!-- script to set float of element -->
    <script>
        function RightFloat() {
            document.getElementById("GFG").style.cssFloat
                    = "right";
        }
    </script>
</body>
 
</html>                   

Output: Before Click on the button:

  

After Click on the button:

  

Example 2: 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Style cssFloat Property
    </title>
</head>
 
<body>
    <h1 id = "GFG">GeeksForGeeks</h1>
     
    <h2>HTML | DOM cssFloat property</h2>
     
    <button onclick = "RightFloat()">
        Float Right
    </button>
     
    <button onclick = "LeftFloat()">
        Float Left
    </button>
     
    <!-- script to set float of element -->
    <script>
        function RightFloat() {
            document.getElementById("GFG").style.cssFloat
                    = "right";
        }
         
        function LeftFloat() {
            document.getElementById("GFG").style.cssFloat
                    = "left";
        }
    </script>
</body>
 
</html>                   

Output: Before Click on the button:

 

After Click on the float left button:

  

After Click on the float right button:

  

Supported Browsers: The browser supported by Style cssFloat property are listed below:


Article Tags :