Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> #box1 { position: static; border: 2px solid #666; width: 300px; height: 100px; } #box2 { position: absolute; border: 2px solid #8ebf42; top: 70px; right: 15px; } #box3 { position: relative; border: 2px solid #666; width: 300px; height: 100px; } #box4 { position: absolute; border: 2px solid #8ebf42; top: 70px; right: 15px; } #box5 { position: absolute; border: 2px solid #666; width:320px; height: 100px; top: 750px; right: 25px; } #box6 { position: absolute; border: 2px solid #8ebf42; top: 70px; right: 15px; } #box7 { position: fixed; border: 2px solid #8ebf42; background-color: #eee; width: 300px; height: 100px; bottom: 0; left: 0; right: 0; } #box8 { position: absolute; border: 2px solid #666; top: 70px; right: 15px; } </style> </head> <body> <h2>Beispiel für die Eigenschaft position</h2> <h3>Position: static</h3> <p>Das Box1-Element bleibt im natürlichen Fluss der Seite und dient nicht als Ankerpunkt für das absolut positionierte Box2-Element:</p> <div id="box1"> Box1: position: static. <div id="box2">Box2: position: absolute, right: 15px, top: 70px</div> </div> <h3>Position: relative</h3> <p>Das Box3-Element bleibt im natürlichen Fluss der Seite und dient gleichzeitig als Ankerpunkt für das absolut positionierte Box4-Element:</p> <div id="box3"> Box3: position: relative. <div id="box4">Box4: position: absolute, right: 15px, top: 70px</div> </div> <h3>Position: absolute</h3> <p>Das Box5-Element bleibt nicht im natürlichen Fluss der Seite. Er positioniert sich nach dem nächstgelegenen Vorfahren und dient gleichzeitig als Ankerpunkt für das absolut positionierte Box6-Element: </p> <div id="box5"> Box5: position: absolute, top: 750px, right: 15px. <div id="box6">Box6: position: absolute, right: 15px, top: 70px</div> </div> <h3>Position: fixed</h3> <p>Das Box7-Element bleibt nicht im natürlichen Fluss der Seite und positioniert sich entsprechend dem Ansichtsfenster und dient als Ankerpunkt für das absolut positionierte Box8-Element:</p> <div id="box7"> Box7: position: fixed, bottom: 0, left: 0, right: 0. <div id="box8">Box8: position: absolute, right: 15px, top: 70px</div> </div> </body> </html>