HTML:
<!DOCTYPE html> <html> <head></head> <body> <div id="box">我要垂直居中</div> </body> </html>
CSS:
html,body{ height:100%; width:100%; } #box{ width:200px; height:200px; position:relative; top:50%; margin:-100px auto; background-color:red; }
效果:
主要是用到相对定位。同时设置了top和margin