在必须广泛使用的情况下,使用vh
a 的高度div
和vm
字体大小。
css3
div.outer { height: 20vh; }
div.inner { font-size: 3vw; height: auto; }
div.inner2 { font-size: 2vw; }
html - 案例 1
<div.outer>
<div.inner>center me!</div>
</div>
html - 案例 2
<div.outer>
<div.inner>center me top!</div>
<div.inner2>center me bottom!</div>
</div>
有什么方法可以使用和calc()
其他css3
属性来垂直居中?div.inner
div.outer