为什么我的锚标签不会移动到div目标?

时间:2018-05-30 01:19:24

标签: html css

我在我的投资组合网站上遇到了关于我在箭头图标上设置的锚标记的问题。似乎我在启动画面上设置的第一个箭头移动到下一部分。我设置的另外两个箭头不会移动到页面上的下一个/ div。我不确定是什么导致这种情况发生,因为我已经在第二和第三个按钮的锚标记中为我将要引用的div设置了id。

箭头2

  <div id="snap" class="bounce arrow">
            <a href="#featproject">
              <i class="fa fa-chevron-circle-down fa-5x" aria-hidden="true"></i>
            </a>
          </div>


            <!-- Carousel of Projects -->
        <div class="row featuredprojects" id="featproject">

         <div class="col-md-12">
           <h2><u>Featured Projects</u></h2>
         </div>

        </div>

箭3

<div id="snap" class="bounce arrow">
          <a href="#contact">
            <i class="fa fa-chevron-circle-down fa-5x" aria-hidden="true"></i>
          </a>
 </div>

<div class="contact" id="contact">

    <button id="contact_button" class="unstyled-button contact-button" data-modal-type="modal-8" >Contact</button>

</div>

的style.css

       * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        border: 0;
        }

        html,body
        {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        }

        body {
        background-color: #fafaf6; /* #fafaf6 */
        color: black;
        overflow-y: scroll;
        scroll-behavior: smooth;
        }

        header {
        height: 100vh;
        margin-bottom: 10px;
        background: url("../img/splashscreen.jpg") no-repeat center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        }

        .header-container{
        padding-right: 110px;
        padding-left: 220px;
        color: #40E0D0;
        }

        .arrow{
        text-align: center;
        margin-bottom: 20px;
        }
        .bio{
        font-size: 15px;
        text-align: center;
        }

        .bio-section{
        height: 100vh;
        }

        .featuredprojects{
        background-image: url("../img/coding.jpg");
        height: 100vh;
        color: #40E0D0;

        }

        .contact{
        text-align: center;
        padding-top: 300px;
        height: 100vh;
        background-color: #40E0D0;
        }

注意:对于缩进,很抱歉,这是我第一次在StackOverflow上发帖。我编辑了代码不必要的注释。我在我的代码中重构了启动画面,我把它放在标题标签中,注意到那些按钮坏了。我在下面加了我的GitHub。

GitHub:https://github.com/adamdevelops/adamdevelops.github.io

1 个答案:

答案 0 :(得分:0)

通过删除x-overflow和y-overflow的html,body和body样式属性来解决。完成后,锚标记按钮将移至具有特定ID的下一个div。