I a got a weird situation and I can not figure out why this is happening. I have the following simple situation:
<p>
<span class="bold">N</span>
<span class="bold">ote</span>
</p>
With the following CSS class:
.bold{
font-weight:bold;
}
When I run this code I will get the following output: N ote.
I find this pretty weird because whenever I use the following HTML code:
<p>
<span class="bold">N</span><span class="bold">ote</span>
</p>
The output will be: Note
Now I am curious what is causing this effect?