使用引导按钮在firefox中不活动的链接

时间:2013-10-07 06:02:46

标签: css firefox twitter-bootstrap

我在构建wordpress网站时遇到了一个奇怪的问题。引导按钮内的所有链接在firefox中都不活动。

是什么导致这个?

这是html输出:

<button class="btn pull-right" role="button">
<a href="http://domain.dev/?cat=4" name="View all News">
    All News
</a>
</button>

这是css:

.home #primary #home-more .btn {
background-image: url("../img/home-button-sprite-more.png");
background-repeat: no-repeat;
margin-right: 0px;
background-color: transparent;
padding: 13px 40px;
background-position: 20px 0px;
}
button.btn {
display: inline-block;
padding: 13px 24px; 
margin-bottom: 0px;
margin-right: 10px;
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
line-height: 1;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: medium none;
border-radius: 0px 0px 0px 0px;
white-space: nowrap;
-moz-user-select: none;
}

3 个答案:

答案 0 :(得分:17)

而不是,

<button class="btn pull-right" role="button">
<a href="http://domain.dev/?cat=4" name="View all News">
    All News
</a>
</button>

你必须使用,

<a href="http://domain.dev/?cat=4" name="View all News">
  <button class="btn pull-right" role="button">
    All News
  </button>
</a>

或者,

<a href="http://domain.dev/?cat=4" title="View all News" class="btn pull-right">
    All News
</a>

答案 1 :(得分:1)

尝试@Devo建议的其他尝试此

<a class="btn btn-primary" href="http://domain.dev/?cat=4">All News</a>

希望这有帮助。

答案 2 :(得分:0)

使用此:

<div class="btn pull-right" role="button">
  <a href="http://domain.dev/?cat=4" name="View all News">
      All News
  </a>
</div>

我认为应该有效