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
|
<html> <head> <meta charset="utf-8"> <title>居中栗子1</title> <style> html,body{ width:60%; height:100%; position:relative; margin:0 auto; }
.wrap{ background-color: #ddd; position:absolute; width:100%; top:50%; left:50%; transform: translate(-50%,-50%); } </style> </head> <body> <div class="wrap"> 温馨提示 </div> </body> </html>
|
近期评论