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

Posted

tags:

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

/* center by traditional relative/absolute position */
/* parent */
.box.box_centerByAbsolute {
 position: relative;
}

/* child */
.box.box_centerByAbsolute .content {
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 margin: auto;
}

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

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

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

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

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

css实现绝对定位元素居中

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