@PeaceNazaSubmitted 11 months ago
The difficulty i had while building the project was adding space on the left and right side of the <span> element.
The difficulty i had while building the project was adding space on the left and right side of the <span> element.
<span>
is by default an inline element, meaning, you can only space a span element left and right, use: padding
or margin
to add spacing to left and right. To add spacing top and down, you need to use display:block