代碼
提交代碼
<!DOCTYPE html>
<html lang="en">
<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;
/* 左方為50% */
left: 50%;
/* 給個寬高方便查看 */
width: 90%;
height: 100%;
/* 這個50%是相對于自身寬高而言的 */
transform: translate(-50%);
/* 白色背景 */
background: white;
}
</style>
</head>
<body>
<div class="center"></div>
</body>
</html>
運行結果