I'm having trouble creating a link with a right chevron that has a larger font size. The issue I'm facing is that the right chevron appears to have excessive top margin, causing a significant gap between it and the line above.
Additionally, I want the text next to the chevron to be vertically aligned in the middle of the chevron itself.
CSS:
.big
{
font-size:80px;
}
a
{
text-decoration:none;
font-size: 30px;
}
HTML:
This is just a test.
<div>
<a href="">Click Here! <span class="large">›</span></a>
</div>
To see what I mean, check out this example here.
Should I simply apply a negative margin to close the gap or is there a better way to achieve my goal? How can I center the text on the point of the chevron? I attempted using vertical-align:middle
without success.