我想把一些内容在Bootstrap 4卡上有一个拉伸链接。我还想在这张卡上包括一个按钮,它有一个URL不同的拉伸链接。
Bootstrap的文档说:
不建议使用拉伸链接的多个链接和点击目标。但是,如果需要,一些位置和z索引样式可以提供帮助。
但我不能让它工作。
我已经尝试过将按钮的z索引设置为5000,但仍然无法点击。
<div class="card">
<div class="card-body">
<div class="row">
<div class="col align-self-center">
<h5 class="card-title">This is a card</h5>
<h6 class="card-subtitle mb-2 text-muted">It has a button in it</h6>
<p class="card-text">How do I make the button rise up above the stretched link?</p>
</div>
<div class="col-auto align-self-center">
<a class="btn btn-primary" href="https://www.stackoverflow.com" role="button">Button Link</a>
</div>
<a href="https://www.duckduckgo.com" class="stretched-link"></a>
</div>
</div>
</div>
字符串
card example
我想让它这样的按钮是没有覆盖它的拉伸链接点击。
有什么建议吗?
4条答案
按热度按时间vom3gejh1#
我必须将
z-index
设置为一个> 1的值,* 和 * 必须在元素上设置position: relative;
,以使其在stretched-link
之上可点击。在你的情况下,这意味着:
字符串
ux6nzvsh2#
将按钮设置为与
stretched-link
具有相同的z索引将使按钮可点击:字符串
gk7wooem3#
在嵌套在拉伸链接中的按钮或链接周围放置
<div>
。然后给予该div以下内容:字符串
sg2wtvxw4#
将
class="stretched-link"
也添加到button类中。代码如下。字符串