Open In App

CSS | margin-inline Property

The margin-inline property is used to define the logical inline start and 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: length | auto | initial | inherit | unset;

Property values: 

Below examples illustrate the margin-inline property in CSS:



Example 1:  




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

Output: 

Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/margin-inline 

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


Article Tags :