css 垂直使用css对齐任何内容

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 垂直使用css对齐任何内容相关的知识,希望对你有一定的参考价值。

/* * *This method prevents elements from being blurry due to the element being placed on a “half pixel”. 
A solution for this is to set its parent element to preserve-3d* * */
.parent-element {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.element {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

以上是关于css 垂直使用css对齐任何内容的主要内容,如果未能解决你的问题,请参考以下文章

使用 CSS 3 垂直对齐

css表格单元格和垂直对齐中间在Firefox中不起作用

css 用三行CSS垂直对齐任何东西

css #CSS:只用3行CSS垂直对齐任何东西

css 只用3行CSS垂直对齐任何东西

html 使用CSS表垂直对齐内容