Open In App

CSS | margin-inline-start Property

Last Updated : 26 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The margin-inline-start property in CSS is used to define the logical inline start margin of an element. This property helps to place margin depending on the element’s writing mode, directionality, and text orientation.

Syntax:  

margin-inline-start: length | auto | initial | inherit | unset;

Property values:  

  • length: It sets a fixed value defined in px, cm, pt, etc. Negative values are allowed. Its default values.
  • auto: It is used when it is desired that the browser determines the width of the left margin.
  • initial: It is used to set the value of the margin-inline-start property to its default value.
  • inherit: It is used when it is desired that the element inherits the margin-inline-start property of its parent as its own.
  • unset: It is used to unset the default margin-block.

Below examples illustrate the margin-inline-start property in CSS:

Example 1:  

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 110px;
        }
        .geek {
            background-color: purple;
            writing-mode: vertical-rl;
            margin-inline-start: 20px;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | margin-inline-start Property</b>
        <br><br>
        <div>
            <b class="geek">Cascading Stylesheet</b>
        </div>
    </center>
</body>
</html>


Output: 

Example 2:  

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 110px;
        }
        .geek {
            background-color: purple;
            writing-mode: vertical-rl;
            margin-inline-start: auto;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | margin-inline-start Property</b>
        <br><br>
        <div>
            <b class="geek">Cascading Stylesheet</b>
        </div>
    </center>
</body>
</html>


Output: 

Supported Browsers: The browsers supported by margin-inline-start property are listed below: 

  • Google Chrome 87+
  • Edge 87+
  • Mozilla Firefox 41+
  • Opera 73+
  • Safari 12.1+


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads