Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

CSS | inline-size Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:

  • length: It sets a fixed value defined in px, cm, pt etc. Negative values are allowed. Its default value is 0px.
  • percentage: It is same as length but as a percentage of the window size.
  • auto: It is used when it is desired that the browser determines the inline-size.
  • initial: It is used to set the value of the block-size property to its default value.
  • inherit: It is used when it is desired that the element inherit the block-size property of its parent as its own.
  • unset: It is used unset the default block-size.

Below examples illustrate the inline-size property in CSS:

 Example 1: 

HTML




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

HTML




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

  • Google Chrome 57
  • Edge 79
  • Mozilla Firefox 41
  • Opera 44
  • Safari 12.1

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


My Personal Notes arrow_drop_up
Last Updated : 26 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials