Heim > Artikel > Web-Frontend > Detaillierte Erläuterung des Positionsattributs in CSS
In
CSS dient das Attribut position dazu, den Positionierungstyp des Elements festzulegen. Es umfasst absolute (absolute Positionierung) und relative (relative Positionierung). , Es gibt vier Parameter: statisch ( statische Positionierung, Standardwert) und fest (feste Positionierung).
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网</title> <style> h2 { position:absolute; left:100px; top:150px; } </style> </head> <body> <h2>这是一个绝对定位了的标题</h2> <p>用绝对定位,一个元素可以放在页面上的任何位置。标题下面放置距离左边的页面100 px和距离页面的顶部150 px的元素。.</p> </body> </html>
Das obige ist der detaillierte Inhalt vonDetaillierte Erläuterung des Positionsattributs in CSS. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!