- <style type="text/css">
- html,body{height:100%;margin:0;padding:0;}
- #bottomDiv{ /*Code for Moz, Opera, etc.*/
- height:50px;
- width:100%;
- background:#9bb;
- position:fixed;
- bottom:0;
- }
- #scaleDiv{
- position:absolute;
- visibility:hidden;
- height:100%;
- }
- </style>
- <!--[if IE]>
- <style type="text/css"> /*IE-specific markup*/
- #bottomDiv{
- position:absolute;
- top:expression(offsetParent.scrollTop + (document.getElementById("scaleDiv").offsetHeight-50));
- }
- </style>
- <![endif]-->
- <div id="scaleDiv">
- <!-- this div is to find browser page display height -->
- </div>
- <div style="font:4em Verdana;padding-bottom:2em;"><!-- bottom padding allows content to clear on scroll -->
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
- hello hello<br/>
-
- </div>
- <div id="bottomDiv">
- <p style="text-align: center; color: white">I am here</p>
- </div>
複製代碼
移動互聯網時代,google增加了自適應的廣告,移動適配屏幕尺寸成為主流,一直在底部顯示的廣告能增加廣告點擊率,很多移動站點都使用了這個功能
如果不想修改整個代碼,可以結合JS代碼來調用這個樣式
測試了下 通過一段代碼也可以實現 不需要在head中 直接在body中使用 大家可以再測試下不同手機瀏覽器的兼容性問題
桌面瀏覽器在線測試工具:
- http://www.w3school.com.cn/tiy/t.asp?f=html_style
複製代碼 |
|