So I have this line of code with 5 different spans for different colors per letter
<span style="color: #B03A2E;">A</span><span style="color: #76448A;">M</span><span style="color: #2874A6;">I</span><span style="color: #239B56;">T</span><span style="color: #B7950B;">Y</span>
However, I want my code to be organized better, so I "line breaked" the spans.
<span style="color: #B03A2E;">A</span>
<span style="color: #76448A;">M</span>
<span style="color: #2874A6;">I</span>
<span style="color: #239B56;">T</span>
<span style="color: #B7950B;">Y</span>
The problem with doing this is that it leaves the HTML output spaced out instead of together as one word. Why is this, and can it be fixed?