问题是页面可以动态地改变它的高度.
使用the current solution I’m using,页脚位于页面底部.但是当页面高度动态变化时,页脚将保持在其确切位置.
页脚的CSS如下:
#footer { position: absolute; right: 0; bottom: 0; left: 0;}
HTML和body标签具有以下规则:
HTML,body { min-height: 100%; height: 100%;}
请参阅下面的代码段以获取可视化演示(最适合在全窗口模式下使用)
$(document).ready(function() { var button = $("#addContent"); var lorem = "<p>Proin cursus odio quis neque porttitor pretium. Duis cursus dolor mi,quis blandit eros dictum vitae. Mauris tempus turpis non leo commodo sagittis ac ac urna. Vivamus aliquet euismod posuere. Suspendisse at semper mauris. Phasellus blandit convallis tincIDunt. Maecenas elementum ullamcorper risus,a vestibulum ex accumsan sed. Nulla facilisi.</p><p>Proin cursus odio quis neque porttitor pretium. Duis cursus dolor mi,a vestibulum ex accumsan sed. Nulla facilisi.</p>"; button.click(function() { $("main button").before(lorem); }); });
* { Box-sizing: border-Box;}body { margin: 0;}header { background: #333; color: #fff; padding: 25px;}main { padding: 25px;}main h3 { margin-top: 0;}code { background: #f1f1f1; padding: 0 5px;}footer { position: absolute; background: #ededed; padding: 25px; color: #000; right: 0; bottom: 0; left: 0;}
<script src="https://AJAX.GoogleAPIs.com/AJAX/libs/jquery/2.1.1/jquery.min.Js"></script><header> <p>Just a sample header</p></header><main> <h3>Some sample content</h3> <p>Click on the <code>button</code> to see what i mean.</p> <p>When the <code>heigth</code> of the page dynamically changes,the <code>footer</code> will stay at its exact position.</p> <button ID="addContent">Click to add more content</button></main><footer> <p>The footer</p></footer>
如何让CSS知道高度变化?并将该页脚保留在文档的底部而不是它停留在窗口的底部?
解决方法 首先,如果你想使用position:absolute,那么父元素应该是初始位置的其他元素,比如position:relative或者它将看起来第一个父元素是相对的位置.因此,如果你添加位置:相对于body,页脚将是动态的.但绝对定位的元素已从文档流中完全删除,因此在这种情况下它将与其他元素重叠,但如果我们添加变换,我们可以解决:translateY(100%)
所以最后你会得到:
body { margin: 0; position: relative;}footer { position: absolute; background: #ededed; padding: 25px; color: #000; right: 0; bottom: 0; left: 0; transform: translateY(100%);}总结
以上是内存溢出为你收集整理的html – 当页面高度使用CSS动态更改时,将页脚保持在页面底部全部内容,希望文章能够帮你解决html – 当页面高度使用CSS动态更改时,将页脚保持在页面底部所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)