调整顶部位置时按钮不可点击

时间:2014-10-24 00:08:44

标签: html css

出于某种原因,当我添加' top:xxx' css中的属性我的按钮变得不可点击,我无法正确定位它。之前工作正常。我已经设置了运行joyride onclick,这是一个基础插件。不知道最新情况如何。这是我的HTML,并链接到该网站,请检查元素以查看代码www.omegadesignla.com:

<div class="container">
    <header>

      <div class="row"> 
        <div class="large-3 small-centered columns"> <!-- large centered -->
        <a id="topbutton" class="button large radius button">Take the tour!</a>

        </div>



      </header>

这是我的css:

#topbutton{
    position: relative;
    top: 125px;
 }

1 个答案:

答案 0 :(得分:2)

你刚刚遗漏了一个href属性 试试这个

<a id="topbutton" href="#" class="button large radius button">Take the tour!</a>