我是一个HTML / CSS初学者,我不能解决一个问题。我的问题是,当我放大我的页脚跟随我。
顺便说一下,我使用的是bootstrap 4
html{
position: relative;
min-height: 100%;
}
.Footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px; /* Set the fixed height of the footer here */
line-height: 60px;
background-color: #f5f5f5;
}
<footer class="Footer">
<div class="container-fluid">
<div class="col">
<!-- Les lanngues (Footer) -->
<div class="col-lg-3 col-xs-2">
<a href="#">EN</a>
<a href="#">GER</a>
<a href="#">FR</a>
</div>
</div>
<div class="col">
<!-- L'adresse E-mail (Footer) -->
<div class="col-lg-5 col-xs-5" id="EmailFooter">
<span class="">E-mail : <a href="#">asdpawd@bluewin.ch</a></span>
</div>
<div class="col">
<!-- Telephone (Footer) -->
<div class="col-lg-3 col-xs-6">
<span id="Tel-Footer" >Tél : xxxxx</span>
</div>
</div>
</div>
</footer>
未放大:https://prntscr.com/pi19m7
放大:https://prntscr.com/pi19v3
当我放大的时候,它刚好停在按钮上
3条答案
按热度按时间ac1kyiln1#
欢迎来到我们的社区。使用费克斯盒子比绝对的好。
0md85ypi2#
将位置设置为绝对位置可能是问题所在。此属性将不响应放大,并且无论其他元素如何移动,都将保持在同一位置。请尝试删除““位置:absolute;”,如果您希望页脚与上面的内容隔开,则为页脚提供一个顶部边距。
qxgroojn3#
我认为那个位置:绝对是这里的问题。尝试删除它,然后运行它。有时工作的位置可能有点棘手,所以尝试克服它,然后应用您的页脚,看看结果。