Open In App

CSS |eft Property

The left property in CSS is used to specify the horizontal position of a positioned element. It has no effect on non-positioned elements. 

Note:



Syntax:

left: length|percentage|auto|initial|inherit;

Property Values:



Example 1: This example describes the position property to absolute. 




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS left Property
    </title>
    <style>
        body {
            color: Green;
            text-align: center;
        }
 
        .GFG1 {
            position: absolute;
            left: 129px;
            width: 500px;
            height: 200px;
            border: 5px solid orange;
        }
 
        .GFG2 {
            position: absolute;
            left: 77%;
            width: 140px;
            height: 70px;
            border: 5px solid red;
        }
 
        .GFG3 {
            position: absolute;
            left: auto;
            width: 350px;
            height: 170px;
            border: 5px solid green;
        }
 
        .GFG4 {
            position: absolute;
            left: initial;
            width: 200px;
            height: 100px;
            border: 5px solid maroon;
        }
 
        .GFG5 {
            position: absolute;
            left: inherit;
            width: 200px;
            height: 100px;
            border: 5px solid black;
        }
    </style>
</head>
 
<body>
    <h1>The left Property</h1>
 
    <div class="GFG1">length
        <div class="GFG2">percentage</div>
        <div class="GFG3">auto</div>
    </div>
    <div class="GFG4">initial</div>
    <div class="GFG5">inherit</div>
</body>
</html>

Output:

  

Note: The containers of initial and inherit overlap because of having similar dimensions and value defaults. 

Example 2: This example describes the position property to relative. 




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS left Property
    </title>
 
    <style>
        body {
            color: Green;
            text-align: center;
        }
 
        .GFG1 {
            position: relative;
            left: 129px;
            width: 500px;
            height: 200px;
            border: 5px solid orange;
        }
 
        .GFG2 {
            position: relative;
            left: 77%;
            width: 140px;
            height: 70px;
            border: 5px solid red;
        }
 
        .GFG3 {
            position: relative;
            left: auto;
            width: 350px;
            height: 170px;
            border: 5px solid green;
        }
 
        .GFG4 {
            position: relative;
            left: initial;
            width: 200px;
            height: 100px;
            border: 5px solid maroon;
        }
 
        div.e {
            position: relative;
            left: inherit;
            width: 200px;
            height: 100px;
            border: 5px solid blue;
        }
    </style>
</head>
 
<body>
    <h1>The left Property</h1>
 
    <div class="GFG1">length
        <div class="GFG2">percentage</div>
        <div class="GFG3">auto</div>
    </div>
    <div class="GFG4">initial</div>
    <div class="GFG4">inherit</div>
</body>
</html>

Output:

  

Supported Browsers: The browser supported by left property are listed below:


Article Tags :