1. 程式人生 > >fixed定位(設定固定的導航條)

fixed定位(設定固定的導航條)

元素的位置相對於瀏覽器視窗是固定位置。
即使視窗是滾動的它也不會移動:
例項

<!DOCTYPE html>
<html>
<head>
<style>
p.pos_fixed
{
position:fixed;
top:30px;
right:5px;
}
</style>
</head>
<body>

<p class="pos_fixed">Some more text</p>
<p><b>Note:</b> IE7 and IE8 supports the fixed value only if a 
!DOCTYPE is specified.</p
>
<p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p>
<p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p><p>Some text</p> </body> </html>

注意: Fixed 定位在 IE7 和 IE8 下需要描述 !DOCTYPE 才能支援.
Fixed定位使元素的位置與文件流無關,因此不佔據空間。
Fixed定位的元素和其他元素重疊。