CSS Inline-Block Element Width
If an inline-block element does not have a width specified, its width will be generated by its content, similar to inline elements:
<span>text</span>
span {
height: 100px;
border: 1px solid red;
display: inline-block;
}
: