0

Below you see a printscreen of a <a> tag with a light blue background.

As you can see, there are space above and below the text inside the <a> tag.

Is it possible to remove the space around the text?

Kind regards

enter image description here

Happy 1976
  • 95
  • 1
  • 8

3 Answers3

0

You need the line-height to be smaller.

Pinki
  • 1,042
  • 9
  • 17
0

Maybe you could...

Option 1:

a {
    padding: 0; /* This will probably work A.F.A.I.K. */
    display: inline-block;
    /* If it doesn't, adding inline-block display will it inline **and** have
    a CSS box... but I'm not sure if this is recommended, honestly. */
}

Option 2:

a {
    line-height: 0;
    /* Mess with the line-height value to change the
    "Line Height" in an inline element */
}
0

Basically <a> tag does not have such padding. Tell me, if this tag is inside any <li> tag or anything else.

Anand Gupta
  • 5,640
  • 3
  • 27
  • 37