gpt4 book ai didi

html - 如何将行移动到最靠近第一行的顶部

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

我有显示和包含 2 行的代码,并且充当链接。我尝试将第二行移动到第一行顶部最近的点 - 但没有成功。

我尝试通过 margin-bottom:20pxmargin-bottom:-20px ,但它所做的一切,它用蓝色覆盖了图像并且没有靠近第二个行到顶部第一行。

如何向上移动它?

这是 HTML 代码:

<div class="elements-promo">
<div class="elements-promo__copy-wrapper">
<div class="elements-promo__content">

<a class="fill" href="example.com/">

<h2 class="elements-heading ">Top Ten Working Tools</h2>
<div class="elements-heading2">Best tools ever!</div>

</a>
</div>
</div>
</div>

这是 CSS 代码:

.elements-heading2 {
color: #fff;
font-family: arial;
font-size: 20px;
}

.fill
{
display: block;
height: 90%;
width: 100%;
text-decoration: none;
}
h2
{
font-family: arial;
}
.elements-promo {
background-color: #f93d66;
background: linear-gradient(145deg, #4772d9, #5be0e0);
border-radius: 4px;
height: 62px;
}

.elements-promo__copy-wrapper {
-ms-flex: 0 0 75%;
flex: 0 0 75%;
margin: 6px 0px;
background-position: 100% left top;
background-repeat: no-repeat;
max-height:60px;

}

@media (min-width:160px) {
.elements-promo__copy-wrapper {
background-image: url("//cdn.pbrd.co/images/HghWJ2p.png")
}
}
.elements-promo .elements-heading {
color: #fff;
padding-top:5px;
}


.elements-promo__content {
padding-right:15px;
text-align:right;
}

这是一个直播:JSfiddle

最佳答案

这对你有用。

.elements-heading2 {
color: #fff;
font-family: arial;
font-size: 20px;
position: relative;
top: -19px;
}

关于html - 如何将行移动到最靠近第一行的顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49800489/

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