Position fixed
удаляет элемент из нормального потока содержимого.Поэтому вам нужно использовать bottom: 0;
, чтобы расположить нижний колонтитул в самом низу.
.postion-b-0 {
bottom: 0;
}
Большая часть кода CSS не нужна.Вам нужно использовать только свойство выше.
.postion-b-0 {
bottom: 0;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css" rel="stylesheet" />
<footer class="position-fixed container-fluid bg-dark text-white py-5 postion-b-0">
<div class="row">
<div class="col-6 ">
<h6>Copyright © 2018</h6>
</div>
<div class="col-6">
<h6>About us</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eget sapien dolor. Nam aliquam augue ante, et sodales felis vulputate iaculis.</p>
</div>
</div>
</footer>
Столбцы занимают половину строк в приведенном выше коде.Но если вы хотите использовать колонку полной ширины на мобильном устройстве, используйте код ниже.
.postion-b-0 {
bottom: 0;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.css" rel="stylesheet" />
<footer class="position-fixed container-fluid bg-dark text-white py-5 postion-b-0">
<div class="row">
<div class="col-12 col-sm-6 ">
<h6>Copyright © 2018</h6>
</div>
<div class="col-12 col-sm-6">
<h6>About us</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eget sapien dolor. Nam aliquam augue ante, et sodales felis vulputate iaculis.</p>
</div>
</div>
</footer>