CSS Inline Element Width and Height
The width and height of an inline element are always limited by its text. Even if you set the width and height properties, they will not work for an inline element:
<span>text</span>
span {
width: 100px;
height: 100px;
border: 1px solid red;
}
: