For Ex: The below flexbox code will remove the space between two span. But is there any other better option?
#remove_space {
display: flex;
flex-direction: row;
align-content: flex-start;
}
span {
padding: 0px;
margin: 0px;
}
<section id="remove_space">
<span>Hello</span>
<span>All</span>
</section>