search
HomeWeb Front-endCSS TutorialLet's talk about the method of realizing horizontal and vertical centered layout with CSS

Let's talk about the method of realizing horizontal and vertical centered layout with CSS

During a recent interview, the interviewer asked about the horizontal and vertical centering layout method of CSS. As a newbie in front-end, I was undoubtedly confused. I quickly looked up the information when I was free. Let me analyze it and share it with you to avoid falling into pitfalls.

First of all, let’s explain html and some basic css styles, I won’t go into details below!
html

<body>
		<div class="div1">
			<div class="box  size">垂直水平居中</div>
		</div>
	</body>

The public css code is as follows

<style type="text/css">
			/* 公共样式 */
			.div1{
				width: 300px;
				height: 300px;
				border:1px solid aqua;
				
			}
			.box{
				background: #00FFFF;
			}
			.box.size{
				width:100px;
				height:100px;
			}
</style>

These css styles will be included by default in the subsequent introduction, so I won’t go into details!

1. absolute and margin auto (commonly used)

Similarly, the width and height of the centered element must be fixed, and the width and height of the child elements need to be known
In this way, by setting the distance in all directions to 0, and then setting the margin to auto, you can center it in all directions

.div1{
				position: relative;
			}
			.box{
				position: absolute;
				top:0;
				left: 0;
				right: 0;
				bottom: 0;
				
				margin: auto;
			}

2. Absolute and margin (negative value)

Let’s briefly talk about the principle. Absolute positioning is used. The percentage of absolute positioning is relative to the width and height of the parent element, so we can center the element based on this principle. . But please note: absolute positioning is based on the upper left corner of the child element, but if you want the child element to be displayed in the center, you must solve this problem.
At this time, you can use the negative value of margin to achieve the effect. When the margin is negative, the element is positioned in the opposite direction. In this way, we can set the margin of the sub-element to half the width and height of the sub-element. . (PS: The disadvantage is that the width and height of the child element must be obtained)

.div1{
				position: relative;
			}
			.box{
				top: 50%;
				left: 50%;
				position: absolute;
				margin-top: -50px;
				margin-left: -50px;
			}

3. Absolute and calc

also require the width and height of the child element Fixed, and knowing width and height, css3 has computed properties.
The percentage of top is based on the upper left corner of the element minus half of the width (PS: depends on the compatibility of calc)

.div1{
			   position: relative;
		   }
		   .box{
			   position: absolute;
			   top: calc(50% - 50px ); 
				/* 减号前后没有空格,该样式不生效*/
			   left: calc(50% - 50px );
		   }

When I was writing this code, I discovered an interesting thing, calc (50%-50px) If there are no spaces before and after the minus sign, the style will not take effect. If you add spaces, it will take effect normally. I don’t know the specific reason emmmmm

below The method can be set without knowing the width and height of the child elements.

html is modified to:

<body>
		<div class="div1">
			<div class="box">水平垂直居中,不需要子元素固定宽高</div>
		</div>
	</body>

The public css is as follows

	.div1{
				width: 300px;
				height: 300px;
				border: 1px solid red;
			}
			.box{
				background: #00FFFF;
			}

4. Flex (commonly used)

flex is a modern layout solution that only requires a few lines of code to achieve the centering effect

.div1{
				display: flex;
				justify-content: center;
				align-items: center;
			}			

5. line-height

Using the centering attribute of inline elements can also achieve horizontal and vertical centering. Set the box as an inline element and use text-align to achieve horizontal centering or vertical-align (PS: This method requires resetting the text display to the desired effect in the child element)

          .div1{
				line-height: 300px;
				text-align: center;
				font-size: 0px;
			}
			.box{
				font-size: 10px;
				display: inline-block;
				vertical-align: middle;
				line-height:initial;
				/* 修正文字 */
			 	text-align: left;
	        }

6. Absolute and transform

does not require fixed width and height of child elements, but depends on the compatibility of translate2d

           .div1{
				position: relative;
			}
			.box{
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%,-50%);
			}

7. css-table

The new table attribute of css can change the display effect of ordinary elements to table elements, and can also achieve horizontal centering

           .div1{
				display:table-cell;
				text-align: center;
				vertical-align: middle;
			}
			.box{
				display:inline-block;
			}

The above are some of the centered layout methods I have summarized. If there are any other methods, you are welcome to add them!

Personal feeling: I prefer absolute margin auto, flex, absolute and transform. It is best to use flex on the mobile terminal. I like absolute margin auto# on the PC terminal.

## Recommended related tutorials:

CSS video tutorial, CSS3 video tutorial

The above is the detailed content of Let's talk about the method of realizing horizontal and vertical centered layout with CSS. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!