Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
.parent { position: relative; /* Establishes positioning context */ width: 300px; height: 200px; background: #e9ecef; } .child { position: absolute; top: 0; right: 0; /* Top-right corner of .parent */ background: #007bff; color: white; padding: 4px 8px; }
Result
Open