I'm currently using the following <p>
tag but it's creating a gap between the tick mark and the text that follows after the closing </p>
<p class="tick">✓</p> Post messages to friends all over the world.
CSS:
.tick {
font-size: 12px;
color: green;
font-weight: bold;
line-height: normal
}
Here is how it appears:
✓
Post messages to friends all over the world.
However, I would prefer everything to be on the same line instead.
Any suggestions?