anchor padding

Hello, i have inserted some anchors in the pages and i have also added some css to fix visualization with sticky header. It still does not work properly, do you have any idea?

Thanks a lot!

:target:before {

content:"";

display:block;

height:110px; 

margin:-110px 0 0;

}


@media (max-width: 768px) { 

 :target:before {

  height: 90px;

  margin: -90px 0 0;

 }

}


@media (max-width: 480px) { 

 :target:before {

  height: 70px;

  margin: -70px 0 0;

 }

}

Comments

Sign In or Register to comment.