CSS Positioning(定位)
CSS Position(定位)
CSS position 屬性,讓您可以將佈局的一部分與另一部分重疊,還可以完成多年來通常需要使用多個表格才能完成的任務。例:
決定顯示在前面的元素!
元素可以重疊!
Positioning(定位)
CSS定位屬性允許你為一個元素定位。它也可以將一個元素放在另一個元素後面,並指定一個元素的內容太大時,應該發生什麼。
元素可以使用的頂部,底部,左側和右側屬性定位。然而,這些屬性無法運作,除非是先設定position屬性。他們也有不同的工作方式,這取決於定位方法.
有四種不同的定位方法。
Static 定位
HTML元素的預設值,即沒有定位,元素出現在正常的流中。
靜態定位的元素不會受到top, bottom, left, right影響。
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> div.static { position: static; border: 3px solid #73AD21; } </style> </head> <body> <h2>position: static;</h2> <p>使用 position: static; 定位的元素,无特殊定位,遵循正常的文档流对象:</p> <div class="static"> 该元素使用了 position: static; </div> </body> </html>
運行實例?
點擊"運行實例" 按鈕查看線上實例
Fixed 定位
元素的位置相對於瀏覽器視窗是固定位置。
即使視窗是滾動的它也不會移動:
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> p.pos_fixed { position:fixed; top:30px; right:5px; } </style> </head> <body> <p class="pos_fixed">Some more text</p> <p><b>注意:</b> IE7和IE8支持只有一个!DOCTYPE指定固定值.</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定位的元素和其他元素重疊。
Relative 定位
相對定位元素的定位是相對其正常位置。
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h2.pos_left { position:relative; left:-20px; } h2.pos_right { position:relative; left:20px; } </style> </head> <body> <h2>This is a heading with no position</h2> <h2 class="pos_left">This heading is moved left according to its normal position</h2> <h2 class="pos_right">This heading is moved right according to its normal position</h2> <p>Relative positioning moves an element RELATIVE to its original position.</p> <p>The style "left:-20px" subtracts 20 pixels from the element's original left position.</p> <p>The style "left:20px" adds 20 pixels to the element's original left position.</p> </body> </html>
運行實例»
點擊"運行實例" 按鈕查看線上實例
可以移動的相對定位元素的內容和相互重疊的元素,它原本所佔的空間不會改變。
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h2.pos_top { position:relative; top:-50px; } </style> </head> <body> <h2>This is a heading with no position</h2> <h2 class="pos_top">This heading is moved upwards according to its normal position</h2> <p><b>注意:</b> 即使相对定位元素的内容是移动,预留空间的元素仍保存在正常流动。</p> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例
相對定位元素經常被用來作為絕對定位元素的容器塊。
Absolute 定位
絕對定位的元素的位置相對於最近的已定位父元素,如果元素沒有已定位的父元素,那麼它的位置相對於<html>:
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> h2 { position:absolute; left:100px; top:150px; } </style> </head> <body> <h2>This is a heading with an absolute position</h2> <p>用绝对定位,一个元素可以放在页面上的任何位置。标题下面放置距离左边的页面100 px和距离页面的顶部150 px的元素。.</p> </body> </html>
運行實例»
點擊"運行實例" 按鈕查看線上實例
Absolutely定位使元素的位置與文件流無關,因此不佔據空間。
Absolutely定位的元素和其他元素重疊。
sticky 定位
sticky 英文字面意思是粘,粘貼,所以可以把它稱之為粘性定位。
position: sticky; 是基於使用者的捲動位置來定位。
黏性定位的元素是依賴使用者的捲動,在 position:relative 與 position:fixed 定位之間切換。
它的行為就像 position:relative; 而當頁面滾動超出目標區域時,它的表現就像 position:fixed;,它會固定在目標位置。
元素定位表現為在跨越特定閾值前為相對定位,之後為固定定位。
這個特定閾值指的是 top, right, bottom 或 left 之一,換言之,指定 top, right, bottom 或 left 四個閾值其中之一,才可使粘性定位生效。否則其行為與相對定位相同。
注意: Internet Explorer, Edge 15 及更早 IE 版本不支援 sticky 定位。 Safari 需要使用 -webkit- prefix (查看以下實例)。
實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> div.sticky { position: -webkit-sticky; position: sticky; top: 0; padding: 5px; background-color: #cae8ca; border: 2px solid #4CAF50; } </style> </head> <body> <p>尝试滚动页面。</p> <p>注意: IE/Edge 15 及更早 IE 版本不支持 sticky 属性。</p> <div class="sticky">我是粘性定位!</div> <div style="padding-bottom:2000px"> <p>滚动我</p> <p>来回滚动我</p> <p>滚动我</p> <p>来回滚动我</p> <p>滚动我</p> <p>来回滚动我</p> </div> </body> </html>
運行實例?
點擊"運行實例" 按鈕查看線上實例
重疊的元素
元素的定位與文檔流無關,所以它們可以覆蓋頁面上的其它元素
z-index屬性指定了一個元素的堆疊順序(哪個元素應該放在前面,或後面)
一個元素可以有正數或負數的堆疊順序:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> img { position:absolute; left:0px; top:0px; z-index:-1; } </style> </head> <body> <h1>This is a heading</h1> <img src="w3css.gif" width="100" height="140" /> <p>因为图像元素设置了 z-index 属性值为 -1, 所以它会显示在文字之后。</p> </body> </html>
運行實例»點擊"運行實例" 按鈕查看線上實例
注意: 如果兩個定位元素重疊,沒有指定z - index,最後定位在HTML程式碼中的元素將會顯示在最前面。
更多實例
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> img { position:absolute; clip:rect(0px,60px,200px,0px); } </style> </head> <body> <img src="w3css.gif" width="100" height="140" /> </body> </html>
運行實例»點擊"運行實例"按鈕查看線上實例
此範例示範如何設定元素的外形。該元素被剪裁成這種形狀,並顯示出來。
實例:如何使用捲軸來顯示元素內溢出的內容
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> div.scroll { background-color:#00FFFF; width:100px; height:100px; overflow:scroll; } div.hidden { background-color:#00FF00; width:100px; height:100px; overflow:hidden; } </style> </head> <body> <p>overflow 属性规定当内容溢出元素框时发生的事情。.</p> <p>overflow:scroll</p> <div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div> <p>overflow:hidden</p> <div class="hidden">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div> </body> </html>
運行實例»
#點擊"運行實例" 按鈕查看線上實例
這個例子示範了overflow屬性建立一個捲軸,當一個元素的內容在指定的區域過大時如何設定以適應。
實例:如何設定瀏覽器自動溢出處理
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> div { background-color:#00FFFF; width:150px; height:150px; overflow:auto; } </style> </head> <body> <p>overflow 属性规定当内容溢出元素框时发生的事情。</p> <div> 当你想更好的控制布局时你可以使用 overflow 属性。尝试修改 overflow 属性为: visible, hidden, scroll, 或 inherit 并查看效果。 默认值为 visible。 </div> </body> </html>
#執行實例»
點擊"運行實例"按鈕查看線上實例
實例:更改遊標
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <p>将鼠标移动到这些字上改变鼠标样式cursor.</p> <span style="cursor:auto">auto</span><br> <span style="cursor:crosshair">crosshair</span><br> <span style="cursor:default">default</span><br> <span style="cursor:e-resize">e-resize</span><br> <span style="cursor:help">help</span><br> <span style="cursor:move">move</span><br> <span style="cursor:n-resize">n-resize</span><br> <span style="cursor:ne-resize">ne-resize</span><br> <span style="cursor:nw-resize">nw-resize</span><br> <span style="cursor:pointer">pointer</span><br> <span style="cursor:progress">progress</span><br> <span style="cursor:s-resize">s-resize</span><br> <span style="cursor:se-resize">se-resize</span><br> <span style="cursor:sw-resize">sw-resize</span><br> <span style="cursor:text">text</span><br> <span style="cursor:w-resize">w-resize</span><br> <span style="cursor:wait">wait</span><br> </body> </html>
運行實例»##點擊"運行實例"按鈕查看線上實例
這個範例示範如何設定瀏覽器來自動處理溢位。
所有的CSS定位屬性
"CSS" 欄位中的數字表示哪個CSS(CSS1 或CSS2)版本定義了該屬性。
屬性 | ##CSS | ||
---|---|---|---|
bottom | ##定義了定位元素下外邊距邊界與其包含區塊下邊界之間的偏移。 | autolength % inherit | 2 |
clip | |||
##剪輯一個絕對定位的元素 shapeauto inherit2 cursor #cursor # #顯示遊標移動到指定的類型 url #autocrosshair default pointer #move e-resize ne-resize############nw-resize###########n-resize####### #####se-resize############sw-resize#############s-resize########### w-resize############text############wait############help####### | 2 | ||
#left | 定義了定位元素左外邊距邊界與其包含區塊左邊界之間的偏移。 | auto length % inherit | 2 |
overflow | 設定當元素的內容溢出其區域時發生的事情。 | auto hidden scroll visible inherit | 2 |
overflow-y | ##指定如何處理頂部/底部邊緣的內容溢位元素的內容區域 | ##autohidden scroll visible no-display no-content | 2|
## overflow-x 指定如何處理右邊/左邊邊緣的內容溢位元素的內容區域 | auto | hiddenscroll#
visible no-display no-content 2 | |
指定元素的定位類型 | absolute | fixedrelativestatic inherit 2 | |
##定義了定位元素右外邊距邊界與其包含區塊右邊界之間的偏移。 | autolength | %inherit | 2 |
top | ##top | # #定義了一個定位元素的上外邊距邊界與其包含塊上邊界之間的偏移。 auto | |
inherit2 | z-index | 設定元素的堆疊順序 |