鑑於每次都有人問css垂直居中,如今寫個小例子。。。css
<html> <head> <title>測試</title> <style> div { position: absolute; top: 50%; left: 50%; margin: -150px 0 0 -200px; width: 400px; height: 300px; border: 1px solid red; } </style> </head> <body> <div></div> </body> </html>
效果是:html