Может быть, вы могли бы добавить position:absolute
к вашей части раздела, и для каждого элемента внутри вы можете добавить position: relative
.
section {
position:absolute;
/* height: 100vh; */
background: #00f;
height: auto; /*This will make the height change depending on the element inside*/
}
h1 {
posiiton:relative;
font-size: 150px;
text-transform: uppercase;
background: #f0
}
<section>
<div>
<h1>i am creative web designer</h1>
</div>
</section>