我有这个代码并且页脚看起来很好,但是当我放大页面时,页脚开始快速增加高度并覆盖整个页面。如果我放大页面,我希望页脚高度相同。 :(感谢您的帮助
<style>
footer
{
position: absolute;
width: 100%;
height: 75px;
background:#808284;
bottom:0;
}
</style>
<footer>
</footer>
答案 0 :(得分:1)
目前在纯CSS / HTML
中无法实现Disable zoom on a div, but allow zoom on the page (an alternate div)
如果该链接中的技术不起作用,我确信您可以为窗口调整大小javascript事件设置一个监听器,并按比例保持固定高度。