<footer class="footer">
<div class="footer__social">
<a href="/" class="footer__vk"><img src="./images/Vk.svg" alt=""></a>
<a href="/" class="footer__discord"><img src="./images/Discord.svg" alt=""></a>
<a href="/" class="footer__telegram"><img src="./images/Telegram.svg" alt=""></a>
</div>
</footer>
.footer {
background-color: #0e0e0e;
width: 1903px;
height: 104px;
top: 1023px;
margin-top: auto;
position: relative;
&__social {
display: flex;
justify-content: center;
gap: 9px;
}
&__vk {
display: block;
background-repeat: no-repeat;
background-size: cover;
width: 75px;
height: 35px;
margin-top: 7px;
position: relative;
}
&__discord {
display: block;
background-repeat: no-repeat;
background-size: cover;
width: 102px;
height: 35px;
margin-top: 7px;
position: relative;
}
&__telegram {
display: block;
background-repeat: no-repeat;
background-size: cover;
width: 111px;
height: 35px;
margin-top: 7px;
position: relative;
}
}
<body>
<header>
<!-- Ваш хедер -->
</header>
<main>
<!-- Основной контент страницы -->
</main>
<footer>
<!-- Ваш футер -->
</footer>
</body>
*, *::before, *::after {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
height: 100%;
display: flex;
flex-direction: column;
}
body {
flex: 1; /* Расширяет основной контент на все доступное пространство */
}
header, footer {
flex-shrink: 0; /* Предотвращает сжатие хедера и футера */
}