标签:垂直 tab 兼容 transform cell 解决 mic nsf sla
1、单行文本
.container{ position: relative; } .container .content{ position: absolute; top: 50%; left: 50%; width: 200px; height: 120px; margin-left: -100px; margin-top: -60px; }
方式3:
.container{ position: relative; } .container .content{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
方式4:
vh
和 vw
这两个单位,100vw
就等于视口的宽度,也就是说 1vw
等于 1/100 的视口宽度,vh
也同理,1vh
等于 1/100 视口的高度。因此可以写出下列代码来将一个对话框在视口中居中:.dialog{ position: fixed; margin-top: 50vh; margin-left: 50vw; transform: translate(-50%, -50%); }
方式5:
.container{ display: flex; } .container .content{ margin: auto; }
方式6:
.container{
display: flex;
justify-content: center;
align-items: center;
标签:垂直 tab 兼容 transform cell 解决 mic nsf sla
原文地址:http://www.cnblogs.com/running1/p/7533150.html