gpt4 book ai didi

html - 使用相对位置时如何获取引导卡下方的内容

转载 作者:太空宇宙 更新时间:2023-11-04 01:02:16 25 4
gpt4 key购买 nike

我正在创建一张带有图像的引导卡。使用 position: absolutetop 将卡片主体向上移动到图像上。

当我在卡片下方添加一个新的 div 时,该 div 被推到图像上。我需要将内容留在卡体下方。

我希望这是有道理的,但要消除任何混淆,请查看 jsfiddle .如果您需要更多信息,请告诉我。

这是困境的图像: enter image description here

最佳答案

只需删除 position: absolute;顶部:320px; left: 76px; 样式来自 .card-body 规则并添加 margin-top:-50px; margin-left: 50px; 代替。

.row {
background: #f8f9fa;
margin-top: 20px;
}

.col {
border: solid 1px #6c757d;
padding: 10px;
}
.card {
border: none;
}
.card-body {
width: 80%;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
background: #fff;
/*position: absolute;
top: 320px;
left: 76px;*/
margin-top:-50px;
margin-left: 50px;
}
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>

<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<!--
Bootstrap docs: https://getbootstrap.com/docs
-->

<div class="container">

<div class="card" style="width: 100%;">
<img class="card-img-top" src="http://getbootstrap.com/docs/4.1/assets/brand/bootstrap-social.png" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">Go somewhere</a>
</div>
</div>
</div>
<div>
I need this text to be underneath the card.I tried using margin-bottom for the card, but the problem with this is the content of the card body changed, therefore the height changes which is what i want.
</div>

可以测试一下here还有。

关于html - 使用相对位置时如何获取引导卡下方的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53014517/

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