position 屬性用于定位元素。即以下是定位元素 –
static – 元素框被布置為正常文檔流的一部分,如下前面的元素和前面的后面的元素。
relative – 元素的框被布局為正常流的一部分,然后偏移一些距離。
絕對– 元素的框相對于其包含塊進行布局,并且完全從文檔的正常流程中移除。
固定– 元素的框是絕對定位的,具有針對位置描述的所有行為:絕對。
以下是使用 CSS 定位元素的代碼 –
示例
?實時演示
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } div { color: white; text-align: center; height: 100px; width: 100px; } .static { position: static; background-color: greenyellow; } .relative { position: relative; left: 50px; background-color: rgb(255, 47, 47); } .absolute { position: absolute; right: 50px; top: 20px; background-color: hotpink; } </style> </head> <body> <h1>Position elements example</h1> <div class="static">STATIC</div> <div class="relative">RELATIVE</div> <div class="absolute">ABSOLUTE</div> </body> </html>
登錄后復制
輸出
上面的代碼將產生以下輸出 –
以上就是CSS 定位元素的詳細內容,更多請關注www.92cms.cn其它相關文章!