I have some normal text links:
<a href="projects.html">Projects</a>
Is it possible for only the middle of the letters to be clickable? i.e. not the top of the P or the bottom of the j?
a {
font-size: 50px;
background-color: yellow;
display: inline-block;
height: 25px;
}
This makes the yellow blackground have a height of 25px but it doesn't make any difference to the clickable area. All of the text is still clickable.
See https://jsfiddle.net/m4g2b7tu/
a {
font-size: 50px;
background-color: yellow;
display: inline-block;
height: 25px;
}
<a href="projects.html">Projects</a>