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号