December 3, 2014
固定在上方的寫法
備註:上方會有少了與#bHeader 相同空間。
固定在下方的寫法
備註:下方會少了與#footer 相同空間。
參考網頁:
http://goo.gl/ogSrPu
<html>
<head>
<style type='text/css'>
#bTop{ position:fixed; top:0px;}
</style>
</head>
<body>
<div id="bTop">
這裡是 bTop !!!
</div>
</body>
</html>
<head>
<style type='text/css'>
#bTop{ position:fixed; top:0px;}
</style>
</head>
<body>
<div id="bTop">
這裡是 bTop !!!
</div>
</body>
</html>
備註:上方會有少了與#bHeader 相同空間。
固定在下方的寫法
<html>
<head>
<style type='text/css'>
#bFooter { position:fixed; bottom:0px; }
</style>
</head>
<body>
<div id="bFooter">
這裡是 bFooter !!!
</div>
</body>
</html>
<head>
<style type='text/css'>
#bFooter { position:fixed; bottom:0px; }
</style>
</head>
<body>
<div id="bFooter">
這裡是 bFooter !!!
</div>
</body>
</html>
備註:下方會少了與#footer 相同空間。
參考網頁:
http://goo.gl/ogSrPu
0 Comment(s)