css set width to content code example
Example 1: make div the size of the text inside
div {
display: inline-block;
}
Example 2: width defined by content css
/* <length> values */
width: 300px;
width: 25em;
/* <percentage> value */
width: 75%;
/* Keyword values */
width: max-content;
width: min-content;
width: fit-content(20em);
width: auto;
/* Global values */
width: inherit;
width: initial;
width: unset;