gpt4 book ai didi

html - Bootstrap 布局 - 向下移动标题

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

我不擅长 HTML/CSS,所以我需要你的帮助。这只是简单的问题。我正在使用 Bootstrap,这就是我在页面(标题)上看到的内容。 enter image description here

但我想要这样的东西(将其向下移动,标题从左侧和底部填充 30px(例如)): enter image description here

这是我的标题部分 HTML 代码:

    <header class="business-header" style="background: url('http://localhost/img/clanok.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="tagline">Article name</h1>
</div>
</div>
</div>
</header>

这是“business-header”和“tagline”的 CSS(其他类来自 bootstrap):

.business-header {
height: 300px;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
.tagline {
background: rgba(0, 0, 0, 0.5);
color: #fff;
}

我希望你能帮助我::(

最佳答案

.business-header {
position: relative;
}

.tagline {
position: absolute;
width: 100%;
left: 0;
bottom: 0;
padding: 30px;
}

关于html - Bootstrap 布局 - 向下移动标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35610046/

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