Open In App

CSS margin-inline-end Property

Improve
Improve
Like Article
Like
Save
Share
Report

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

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

Property values: 
 

  • length: It sets a fixed value defined in px, cm, pt. Negative values are also allowed. 0px is the default value.
  • 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-left property to its default value.
  • inherit: It is used when it is desired that the element inherit the margin-left property of its parent as its own.
  • unset: It is used unset the default margin-block.

Below examples illustrate the margin-inline-end property in CSS:
Example 1: 
 

html




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


Output: 
 

Example 2: 
 

html




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


Output: 
 

Supported Browsers: The browser supported by margin-inline-end property are listed below: 
 

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


Last Updated : 07 Mar, 2024
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads