I am trying to achieve this effect below:
How can I get this effect? I want the empty space to adjust to the text. Can anyone give me advice?
.box {
border: 1px solid black;
position: relative;
min-height: 50px;
}
.box__title {
position: absolute;
bottom: 16px;
left: 30px;
}
<div class="box">
<h2 class="box__title">Box title</h2>
</div>