1、设置子元素:
{ ... position :absolute; margin:auto; top:0; right:0; bottom:0; left:0; }
2、设置子元素:(height必须是固定值)
{ position: absolute; top:50%; margin-top: - (0.5height); }
3、设置子元素:(只适用于情况比较简单的单行文本)
{ height:n px; line-height: n px; }
4、box 布局
5、transform
{ position: absolute; top: 50%; transform:translateY(-50%); }
时间: 2024-11-06 16:22:42