Set a div or block to its content’s width in CSS

In HTML we use block elements to take up the full with of a page. These differ in properties from inline elements, which are typically found within text flow.

Learn about the Box Model

Both inline and block elements are important component…


This content originally appeared on DEV Community and was authored by Johnny Simpson

In HTML we use block elements to take up the full with of a page. These differ in properties from inline elements, which are typically found within text flow.

Learn about the Box Model

Both inline and block elements are important components of CSS. To learn about the box model in CSS, click here.

When we create a new div or other block element, it takes up the full width of the page - but what if we want a div or any other block DOM element to only be the width of its contents and no more? To make an HTML block element like a div take up no more space than its content, we can use the fit-content keyword.

For example, here is a div containing some dummy text with a background. Even though the content is short, the div takes up the whole page:

Full width div block element in CSS

If we want this div to now only take up the same width as its content, we can add fit-content:

div {
    width: fit-content;
}

Now our div is much smaller, and only as large as the content it contains:

How fit-content works in CSS

Conclusion and Support

Support for fit-content is quite broad, but it will not work in Internet Explorer. Similarly, some browsers will only support it for width, and not for other properties. In any case, you can be pretty confident using this property with width, but there may be some caveats when applying it to other CSS properties. A full list of support can be found on caniuse.com.

If you want to learn more about CSS, click here.


This content originally appeared on DEV Community and was authored by Johnny Simpson


Print Share Comment Cite Upload Translate Updates
APA

Johnny Simpson | Sciencx (2022-07-02T14:24:12+00:00) Set a div or block to its content’s width in CSS. Retrieved from https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/

MLA
" » Set a div or block to its content’s width in CSS." Johnny Simpson | Sciencx - Saturday July 2, 2022, https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/
HARVARD
Johnny Simpson | Sciencx Saturday July 2, 2022 » Set a div or block to its content’s width in CSS., viewed ,<https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/>
VANCOUVER
Johnny Simpson | Sciencx - » Set a div or block to its content’s width in CSS. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/
CHICAGO
" » Set a div or block to its content’s width in CSS." Johnny Simpson | Sciencx - Accessed . https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/
IEEE
" » Set a div or block to its content’s width in CSS." Johnny Simpson | Sciencx [Online]. Available: https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/. [Accessed: ]
rf:citation
» Set a div or block to its content’s width in CSS | Johnny Simpson | Sciencx | https://www.scien.cx/2022/07/02/set-a-div-or-block-to-its-contents-width-in-css/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.