如何将线移动到第一条线的最近顶部

时间:2018-04-12 15:29:44

标签: html css button

我的代码显示并包含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

1 个答案:

答案 0 :(得分:1)

这对你有用。

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