I'm attempting to center a paragraph element with a span inside that has a different font size, causing the alignment to be slightly off. Below is the HTML code:
<p class="priceWrap"><span class="moneySign">$</span>60000.50</p>
and here is my CSS:
.priceWrap {
text-align: center;
font-size: 20px;
.moneySign{
font-size: 14px;
vertical-align: text-top;
}