epub如何讓標題在豎直方向居中
這個頁面的內容就只有標題,要獨占這個頁面居中,且適配不同的屏幕尺寸,下面是最好的辦法。
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>標題垂直居中</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<h1>這是垂直居中的標題</h1>
</body>
</html>

浙公網安備 33010602011771號