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; }
: