how to remove space between spans code example

Example: how to remove space between spans

# It happens because You probably have spaces or enters in html file. 
# For example try to minimalize your html by transforming this structure:
<div>
	<span class="one">One</span>
	<span class="two">Two</span>
 	<span class="three">Three</span>
</div>
# Into this one:
<div><span class="one">One</span><span class="two">Two</span><span class="three">Three</span></div>

# Also you can try to add attribute "flex" (which ignores spaces at the beginning and the end of element) in CSS to parent, in current situation it would be div:
div {
display: flex;
}

Tags:

Html Example