代碼
提交代碼
<!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 {
/* 令其變成網格布局 */
display: grid;
/* 令子元素居中 */
place-items: center;
}
.center {
/* 不用給寬高,但是可以給個內邊距防止內容與盒子過于貼合 */
padding: 10px;
/* 白色背景 */
background: white;
}
</style>
</head>
<body>
<div class="center">用內容撐開盒子</div>
</body>
</html>
運行結果