css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:基于viewport的居中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:基于viewport的居中相关的知识,希望对你有一定的参考价值。

/* 这里直接将外层的容器做了基于 viewport 的居中 */
.box.box__centerByViewport {
 padding: 1em 1.5em; 
 margin: 50vh auto 0; 
 transform: translateY(-50%);
}

.box.box__centerByViewport .content {
  margin: 0 auto;
}

以上是关于css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:基于viewport的居中的主要内容,如果未能解决你的问题,请参考以下文章

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:基于viewport的居中

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:5。 CSS中的transform属性

css 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:6。通过flex布局

html 笔记:前端开发中的“居中”,绝对定位,transform和flex布局:1。 HTML结构

css实现绝对定位元素居中

Web前端HTML5&CSS311-定位的简介