Published in: CSS
<html> <head> <title>Center</title> <style type="text/css"> body{background:red;} div#centered { background: white; position: absolute; width: 700px; height: 300px; left: 50%; top: 50%; margin-left: -350px; margin-top: -150px;} </style> </head> <body> <div id="centered">This div is centered</div> </body> </html>
You need to login to post a comment.
