Width and height of inline-block element in CSS
An inline-block element can have a width and height set, just like a block element:
<span>text</span>
span {
width: 100px;
height: 100px;
border: 1px solid red;
display: inline-block;
}
: