ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

div水平垂直居中

2026/8/15 11:45:23 拓冰建站 浏览量
div水平垂直居中

使用flex

<div style=" display: flex; align-items: center; justify-content: center; background-color: green; height: 500px; "> <div> hello <div> </div> </div></div>

主要就三行:

display: flex;

align-items: center; // 水平居中

justify-content: center; // 垂直居中