When I ran the code on live server, spaces have been added on the right side of each span elements, though the margins and padding have universally set to "0". How to remove the space?
Why is this happening is not clear.
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
span {
border: 2px solid green;
}
<span>This is a span</span>
<span>This is a span</span>
<span>This is a span</span>
<span>This is a span</span>