亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

代碼
提交代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> /* 清除默認樣式 */ * { padding: 0; margin: 0; } /* 令html和body全屏顯示, 并有一個灰色背景 */ html, body { height: 100%; background: gray; } /* 先在父元素上設置相對定位 */ body { position: relative } .center { /* 絕對定位 */ position: absolute; /* 上下左右全部為0 */ top: 0; right: 0; bottom: 0; left: 0; /* 給定寬高 */ width: 70%; height: 25%; /* 令外邊距自動填充 */ margin: auto; /* 白色背景 */ background: white; } </style> </head> <body> <div class="center"></div> </body> </html>
運行結果