您好,登錄后才能下訂單哦!
CSS中怎么使用position屬性定位,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
position屬性有4個值:
默認是static,無特殊定位,對象遵循HTML定位規(guī)則(一般使用margin、padding)
fixed未支持。對象定位遵從絕對(absolute)方式。但是要遵守一些規(guī)范
absolute絕對定位(相對于最近的父元素,假如父元素都是默認的static,那么將相對body進行定位,如果父元素為relative定位,那么就相對該父元素進行定位)
relative相對定位(相對于自己,在原來位置上移動。與static相比,top、bottom、left、rigth生效,而static不生效)
relative不脫離文檔流,而absolute脫離文檔流。
例子:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>position</title> <style type="text/css"> <!-- body{ font-size:12px; margin:0 auto; } div#demo{ position:relative; border:1px solid #000; margin:50px; top:-50px; line-height:18px; overflow:hidden; clear:both; height:1%; } div#sub{ position:absolute; right:10px; top:10px; } div.relative{ position:relative; left:400px; top:-20px; } div.static,div.fixed,div.absolute,div.relative{ width:300px; } div.static{ background-color:#bbb; position:static; } div.fixed{ background-color:#ffc0cb; } div.absolute{ background-color:#b0c4de; } div.relative{ background-color:#ffe4e1; } --> </style> </head> <body> <div id="demo"> <div class="static">static: 默認值。無特殊定位,對象遵循HTML定位規(guī)則 </div> <div id="sub" class="absolute">absolute: 將對象從文檔流中拖出,使用left,right,top,bottom 等屬性相對于其最接近的一個最有定位設置的父對象進行絕對定位。如果不存在這樣的父對象,則依據body對象。而其層疊通過z-index屬性定義 </div> <div class="fixed">fixed:未支持。對象定位遵從絕對(absolute)方式。但是要遵守一些規(guī)范 </div> <div class="relative">relative:對象不可層疊,但將依據 left,right,top,bottom 等屬性在正常文檔流中偏移位置 </div> </div> </body> </html>
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。