Problem Statement
What happens when you apply width and height to an inline element?
Explanation
Inline elements cannot have width or height applied directly. To control their size, you can change their display type to inline-block or block.
Code Solution
SolutionRead Only
span { display: inline-block; width:100px; }