Я пытаюсь создать веб-сайт, но у меня липкая панель навигации (место в заголовке). Я добавил новый раздел и поместил туда текст, но когда я прокручиваю вниз, он выходит за пределы панели навигации, как вы можете видеть: .about-text { background-color: rgb(0, 0 ,0); /*background-color: rgba(0, 0, 0, 0.5);*/ color: white; font-weight: bold; border: 3px solid black; border-radius: 5px; margin: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 40%; padding: 20px; text-align: center; } <section id="intro"> <div class="about-text"> <h2>Hey there!</h2> <h1 style="font-size:50px">I am Tsahi Barshavsky</h1> <p>Thanks for steping by</p> <button id="aboutBtn" onclick="window.location.href='#about';">More on me</button> </div> </section>
.about-text { background-color: rgb(0, 0 ,0); /*background-color: rgba(0, 0, 0, 0.5);*/ color: white; font-weight: bold; border: 3px solid black; border-radius: 5px; margin: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: 40%; padding: 20px; text-align: center; }
<section id="intro"> <div class="about-text"> <h2>Hey there!</h2> <h1 style="font-size:50px">I am Tsahi Barshavsky</h1> <p>Thanks for steping by</p> <button id="aboutBtn" onclick="window.location.href='#about';">More on me</button> </div> </section>
Спасибо!
Проверьте, имеет ли ваш navbar position: fixed, а также z-index, установленное на значение выше, чем about-text
navbar
position: fixed
z-index
about-text
.navbar { position: fixed; z-index: 999; } .about-text { z-index: 2; }