Open In App

CSS | margin-block-end Property

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

Syntax: 



margin-block-end: length | auto | initial | inherit;

Property values: 

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






<!DOCTYPE html>
<html>
<head>
    <title>CSS | margin-block-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
              margin-block-end: 20px;
              background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | margin-block-end Property</b>
        <br><br>
        <div class="one">GeeksforGeeks</div>
        <div class="two">GFG</div>
        <div class="three">GeeksforGeeks</div>
    </center>
</body>
</html>

Output: 

Example 2: 




<!DOCTYPE html>
<html>
<head>
    <title>CSS | margin-block-end Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 110px;
            height: 80px;
        }
        .two {
            margin-block-end: auto;
            writing-mode: vertical-lr;
            background-color: purple;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | margin-block-end Property</b>
        <br><br>
        <div class="one">GeeksforGeeks</div>
        <div class="two">GFG</div>
        <div class="three">GeeksforGeeks</div>
    </center>
</body>
</html>

Output: 

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


Article Tags :