Open In App

CSS margin-inline-end Property

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: 
 



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




<!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: 
 




<!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: 
 


Article Tags :