gpt4 book ai didi

css - Bootstrap 3 : How to code my banner?

转载 作者:行者123 更新时间:2023-11-28 12:11:34 25 4
gpt4 key购买 nike

有人对如何在横幅底部放置小图片有任何建议吗?请参阅此附件(以红色圈出)以了解我在说什么。我可以使用 CSS3 做到这一点,还是我最好只将图像放在那里?如果该图像可以根据每个页面的标题文本(例如“我们的能力”)的长度进行调整,那就太好了。可以在以下位置查看整个 HTML: HTML link绿色图像位于:Green Image

Goal of project

我的 HTML 代码:

<section class="page-top">
<div class="container">
<h2><em><strong>OUR CAPABILITIES</strong></em></h2>
</div>
</section>

我的 CSS 代码:

section.page-top {
background-color: #161616;
border-top: 5px solid #35557c;
border-bottom: 5px solid #97c05a;
margin-bottom: 35px;
min-height: 50px;
padding: 20px;
position: relative;
text-align: left;

section.page-top h2 {
color: white;
font-weight: 700;
background-color: #97c05a;
display: inline-block;
padding: 7px 9px;
height: 50px;
-webkit-border-radius: 15px 1px 15px 1px;
-moz-border-radius: 15px 1px 15px 1px;
border-radius: 15px 1px 15px 1px;

最佳答案

您可以将 :afterposition:absolutebackground-size 一起使用,使图像随内容调整大小:

section.page-top h2 {
position:relative; /*Add this to your h2*/
}

section.page-top h2:after {
content: '';
width: 100%;
height: 12px;
position: absolute;
top: 100%;
left: 0;
margin-top: 30px;
background: url(http://www.ogmda.com/test/bar.png) no-repeat right center;
background-size: cover;
}

关于css - Bootstrap 3 : How to code my banner?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19470414/

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