0

I want to fixed the location of link anchor in a page with fixed position menu, the question Fixed position navbar obscures anchors works for me, but the background color of the link was been expand to the height of padding, how can I change to the height of font. Thanks

Community
  • 1
  • 1
atu0830
  • 405
  • 7
  • 15

1 Answers1

1

You can change the background-clip property to specify whether to fill background-color till padding-box / content-box or border-box.

The default value is border-box. To fill only content, use content-box

background-clip: content-box;

demo

Sourabh
  • 8,243
  • 10
  • 52
  • 98