Reputation: 61737
I have links on my page which are internal, for example:
/page#h1
/page#h2
When you click on one of these links, in Chrome you see a blue border around the link like follows:
The additional space the border surrounds above the text is caused by the rule:
.jumpTarget:before {
content:"";
display:block;
height:90px;
margin:-90px 0 0;
}
Which compensates for a fixed position top horizontal menu.
How do I remove this blue border? I've tried the CSS selector :target
to specify a red border but this gives me:
Upvotes: 0
Views: 225