gpt4 book ai didi

twitter-bootstrap - 如何提升 Bootstrap 按钮 "over"拉伸(stretch)链接?

转载 作者:行者123 更新时间:2023-12-04 07:43:13 25 4
gpt4 key购买 nike

我想将一些内容放在 Bootstrap 4 卡片中,上面有一个延伸的链接。我还想在这张卡片中包含一个按钮,该按钮的 URL 与拉伸(stretch)链接不同。

Bootstrap 的文档说:

Multiple links and tap targets are not recommended with stretched links. However, some position and z-index styles can help should this be required.



但我无法让它工作。

我已经尝试过将按钮的 z-index 设置为 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

我想让它这样按钮是可点击的,而没有被拉伸(stretch)的链接覆盖它。

有小费吗?

最佳答案

我必须设置 z-index值 > 1,并且必须设置 position: relative;在元素上使其可点击 stretched-link .

在您的情况下,这意味着:

.card .btn {
z-index: 2;
position: relative;
}

关于twitter-bootstrap - 如何提升 Bootstrap 按钮 "over"拉伸(stretch)链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57452301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com