Open In App

CSS | inline-size Property

The inline-size property in CSS is used to define the horizontal or vertical size of an element’s block. It coincides with the width or the height property, depending on the value of the writing-mode property. It leaves the space around the element text. 

Syntax:



inline-size: length | percentage | auto | inherit | initial | unset

Property values:

Below examples illustrate the inline-size property in CSS:



 Example 1: 




<!DOCTYPE html>
<html>
<head>
    <title>CSS | inline-size Property</title>
    <style>
        h1 {
            color: green;
        }
         
        .geek {
            background-color: yellow;
            inline-size: 40%;
            writing-mode: vertical-rl;
        }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inline-size Property</b>
        <br><br>
        <div>
            <b class="geek">GeeksforGeeks</b>
        </div>
    </center>
</body>
</html>

Output:

  

Example 2: 




<!DOCTYPE html>
<html>
<head>
    <title>CSS | inline-size Property</title>
    <style>
        h1 {
            color: green;
        }
         
        p.geek {
                width: 200px;
                height: 200px;
                border: 1px solid black;
                writing-mode: horizontal-tb;
                color: white;
                background: green;
                inline-size: 250px;
 
            }
    </style>
</head>
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | inline-size Property</b>
        <br><br>
        <div>
            <p class="geek">GeeksforGeeks</p>
        </div>
    </center>
</body>
</html>

Output:

  

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

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


Article Tags :