Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Center Align Absolutely Positioned Elements with CSS</title> <style> .box { width: 50%; position: absolute; z-index: 99; margin: 0 auto; left: 0; right: 0; padding: 20px; background: #f0e68c; } </style> </head> <body> <div class="box"> <h1>This is a heading</h1> <p>This is a paragraph.</p> </div> </body> </html>