Как создать смещение над якорной ссылкой? - PullRequest
0 голосов
/ 06 ноября 2019

На моем сайте есть тема Bootstrap 3 с фиксированной панелью навигации.

Часть текста скрыта панелью навигации.

Как создать смещение над якоремссылка?

1 Ответ

0 голосов
/ 06 ноября 2019

Добавьте следующий псевдоэлемент к стилю :target { padding-top: 10%;} замените значение 10% на высоту панели навигации.

:target {
  border: 2px solid #D4D4D4;
  background-color: #e5eecc;
  padding-top:10%;
}
<!DOCTYPE html>
<html>
<head>
<title>Sample code</title>
</head>
<body>

<h1>This is a heading</h1>

<p><a href="#news1">Jump to New content 1</a></p>
<p><a href="#news2">Jump to New content 2</a></p>

<p>Click on the links above and the :target selector highlight the current active HTML anchor.</p>

<p id="news1"><b>New content 1...</b></p>
<p id="news2"><b>New content 2...</b></p>

<p><b>Note:</b> Internet Explorer 8 and earlier versions do not support the :target selector.</p>

</body>
</html>
...