在网页中有时想把输入框或者什么其他元素,放到页面的正中间时可以使用这段代码,背景色background可以自己改,我这里只是简单的居中,下面有这段代码的效果图
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <style> body { background: #F7F7F7; } .form { position: absolute; top: 50%; left: 50%; margin-left: -80px; margin-top: -100px; height: 0px; width: 0px; font-size: 18px; -webkit-box-shadow: 0px 0px 10px #A6A6A6; background: #fff; } </style> <body> <div class="form"> <form action="" method="post"> <input type="text" name="login" > </form> </div> </body> </html> |