<!DOCTYPE html>
<html>
<head>
<style>
.centered-flex {
display: flex;
justify-content: center; /* 水平居中 */
align-items: center; /* 垂直居中 */
height: 100vh; /* 视窗高度 */
}
</style>
</head>
<body>
<div class="centered-flex">
<div>水平垂直居中的内容</div>
</div>
</body>
</html>