/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title></title> <style type="text/css" media="screen"> #limites { position: absolute; width: 100px; height: 100px; background: blue; left: 50%; top: 50%; margin: -50px; } </style> </head> <body> <div id="limites"> </div> </body> </html>