css fit div to content code example
Example 1: css width fit to content
width: fit-content;
Example 2: make div the size of the text inside
div {
display: inline-block;
}
width: fit-content;
div {
display: inline-block;
}