Теперь здесь я делаю «фон» абсолютным относительно относительного div и делаю ваш «абсолютный» div относительным, чтобы он давал высоту родительского элемента вашего содержимого div.Фон всегда будет иметь высоту и ширину родительского элемента, в этом случае он никогда не будет перекрывать нижний колонтитул, независимо от того, сколько текста вы можете поместить.Надеюсь, это поможет
.Background {
background-image:url("https://images.unsplash.com/photo-1517524285303-d6fc683dddf8?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1275&q=80");
height: 220px;
background-size: 100% 100%;
background-repeat: no-repeat;
position: absolute;
height: 100%;
width: 100%;
z-index:0;
}
.Relative {
position:relative;
}
.Absolute {
position:relative;
z-index: 1;
}
h2 {
}
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div class="Main">
<div class="Relative">
<div class="Background"></div>
<div class="Absolute">
<h1>Hi</h1>
<h1>Hi</h1>
<h1>Hi</h1>
<h1>Hi</h1>
<h1>Hi</h1>
</div>
</div>
<footer>With absolute positioning, an element can be placed anywhere on a page. The heading below is placed 100px from the left of the page and 150px from the top of the page.</footer>
</div>