Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
.static { position: static; } /* default */ .relative { position: relative; } .absolute { position: absolute; } .fixed { position: fixed; } .sticky { position: sticky; } /* Offsets only work on non-static elements */ .box { position: relative; top: 20px; /* Move down 20px from normal position */ left: 10px; /* Move right 10px */ }
Result
Open