在网页上使 HTML 元素居中看似一件很简单的事情. 至少在某些情况下是这样的,但是复杂的布局往往使一些解决方案不能很好的发挥作用。
在网页布局中元素水平居中比元素垂直居中要简单不少,同时实现水平居中和垂直居中往往是最难的。现在是响应式设计的时代,我们很难确切的知道元素的准确高度和宽度,所以一些方案不大适用。据我所知, 在CSS中至少有六种实现居中的方法。我将使用下面的HTML结构从简单到复杂开始讲解:
<div class="mipd74e64e91496212f center"> <img src="jimmy-choo-shoe.jpg" alt></div>
鞋子图片会改变,但是他们都会保持500pxX500px的大小。 HSL colors 用于使背景颜色保持一致。
有时显而易见的方案是最佳的选择:
div.center { text-align: center; background: hsl(0, 100%, 97%);}div.center img { width: 33%; height: auto;}
这种方案没有使图片垂直居中:你需要给<div>添加padding或者给内容添加margin-top和margin-bottom使容器与内容之间有一定的距离。
这种方式实现水平居中和上面使用text-align的方法有相同局限性。
div.center { background: hsl(60, 100%, 97%);}div.center img { display: block; width: 33%; height: auto; margin: 0 auto;}
注意: 必须使用display: block使margin: 0 auto对img元素生效。
使用 display: table-cell, 而不是使用table标签; 可以实现水平居中和垂直居中,但是这种方法需要添加额外的元素作为外部容器。
<div class="mip64e91496212f64e0 center-aligned"> <div class="mip1496212f64e0a859 center-core"> <img src="jimmy-choo-shoe.jpg"> </div></div>
CSS:
.center-aligned { display: table; background: hsl(120, 100%, 97%); width: 100%;}.center-core { display: table-cell; text-align: center; vertical-align: middle;}.center-core img { width: 33%; height: auto;}
注意:为了使div不折叠必须加上width: 100%,外部容器元素也需要加上一定高度使得内容垂直居中。给html和body设置高度后,也可以使元素在body垂直居中。此方法在IE8+浏览器上生效。
这种 方案 有非常好的跨浏览器支持。有一个缺点就是必须显式声明外部容器元素的height:
.absolute-aligned { position: relative; min-height: 500px; background: hsl(200, 100%, 97%);}.absolute-aligned img { width: 50%; min-width: 200px; height: auto; overflow: auto; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0;}
Stephen在他的 博客 中演示了这种方案的几种变化。
Chris Coiyer 提出了一个使用 CSS transforms 的新方案。 同样支持水平居中和垂直居中:
.center { background: hsl(180, 100%, 97%); position: relative; min-height: 500px;}.center img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 30%; height: auto;}
但是有以下几种缺点:
CSS transform 在部分就浏览器上需要使用 前缀。
不支持 IE9 以下的浏览器。
外部容器需要设置height(或者用其他方式设置),因为不能获取 绝对定位 的内容的高度。
如果内容包含文字,现在的浏览器合成技术会使文字模糊不清。
当新旧语法差异和浏览器前缀消失时,这种方法会成为主流的居中方案。
.center { background: hsl(240, 100%, 97%); display: flex; justify-content: center; align-items: center;}.center img { width: 30%; height: auto;}
在很多方面 flexbox 是一种简单的方案, 但是它有新旧两种语法以及早期版本的IE缺乏支持 (尽管可以使用 display: table-cell作为降级方案)。
现在规范已经最终确定,现代浏览器也大都支持,我写了一篇详细的教程 教程。
在某些情况下比flexbox更全面:
.center { background: hsl(300, 100%, 97%); min-height: 600px; position: relative;}.center img { width: 40%; height: auto; position: absolute; top: calc(50% - 20%); left: calc(50% - 20%);}
很简单,calc允许你基于当前的页面布局计算尺寸。在上面的简单计算中, 50% 是容器元素的中心点,但是如果只设置50%会使图片的左上角对齐div的中心位置。 我们需要把图片向左和向上各移动图片宽高的一半。计算公式为:
top: calc(50% - (40% / 2));left: calc(50% - (40% / 2));
在现在的浏览其中你会发现,这种方法更适用于当内容的宽高为固定尺寸:
.center img { width: 500px; height: 500px; position: absolute; top: calc(50% - (300px / 2)); left: calc(50% - (300px – 2)); }
我在 这篇文章 中详细讲解了calc。
这种方案和flex一样有许多相同的缺点: 虽然在现代浏览器中有良好的支持,但是在较早的版本中仍然需要浏览器前缀,并且不支持IE8。
.center img { width: 40%; height: auto; position: absolute; top: calc(50% - 20%); left: calc(50% - 20%);}
当然还有 其他更多的方案。理解这六种方案之后,web开发人员在面对元素居中的时候会有更多的选择。
关注“ 网页设计自学平台 ” 订阅号回复以下|关键字|
|dw教程|js教程|淘宝案例|软件下载|搜狐案例|网站模板
|ps教程|ai教程 |ui教程|腾讯案例| ae教程 |字体下载|
|上课素材|前端特效|华润万家案例|最新dw案例|
戳“ 阅读原文 ”入群获取 最新高清前端视频!
这里是工作狂的聚集地
职场
学术
新媒体
设计
极客
专门治愈处女座强迫症。
本文为CSS入门
翻译 redman9
原载CSS-Trick
人们经常抱怨在 CSS 中居中元素的问题,其实这个问题并不复杂,只是因为方法众多,需要根据情况从众多方法中选取一个出来。接下来,我们做一个 "决定树" 来帮我们把问题变的简单一点。首先你需要居中:
—— 水平 ——
• 需要居中inline或者inline-*元素(如文字或者链接)?
• 需要居中block类的元素?
• 需要居中多个block元素?
—— 垂直 ——
• 需要居中inline或者inline-*元素(如文字或者链接)?
• 需要居中block类的元素?
——既水平又垂直 ——
• 固定宽高
• 不固定宽高
• 使用flexbox
● ● ●
水平居中
你可以轻松的在一个block元素中水平居中一个inline元素,以下代码对inline,inline-block,inline-table和inline-flex等有效。
.parent {text-align: center;}
在block元素被设定固定宽度的情况下,可以使用设置元素margin-left和margin-right的值为auto的方法实现水平居中。
.child {width: 400px;margin: 0 auto;}
通过inline-block实现
.parent {text-align: center;}.child {display: inline-block;text-align: left;}
通过flexbox实现
.parent {display: flex;justify-content: center;}
● ● ●
.center {pading-top: 30px; padding-bottom: 30px;}
如果因为某种原因不能使用padding的方法,你还可以设置line-height等于height来达到目的。
.center {height: 100px; line-height: 100px; white-space: nowrap;}
【多行】
相同的上下padding也可以适用于此种情况,如果不能生效,你可以尝试将该元素的父元素的display设置为table,同时该元素的display设置为table-sell,然后设置vertical-align。
.parent {display: table;width: 200px; height: 400px;} .child {display: table-cell;vertical-align: middle;}
如果上述方法不能使用,你可以尝试使用flexbox,一个单独的flexbox子元素可以轻易的在其父元素中居中。谨记,这种方法需要父元素有固定的高度。
.parent {display: flex; justify-content: center;flex-direction: column; height: 400px;}
如果上述两种方式均不能使用,你可以使用“幽灵元素”技术,这种方法采用伪元素::before撑开高度 ,文字垂直居中。
.parent {position: relative;} .parent::before {content: " "; display: inline-block; height: 100%; width: 1%; vertical-align: middle;} .child {display: inline-block;vertical-align: middle; }
垂直居中block类的元素▼
【已知元素高度】
.parent { position: relative; } .child {position: absolute;top: 50%;height: 100px;margin-top: -50px; /* account for padding and border if not using box-sizing: border-box; */}
【未知元素高度】
.parent {position: relative; } .child {position: absolute;top: 50%;transform: translateY(-50%); }
【使用flexbox】
.parent {display: flex;flex-direction: column;justify-content: center; }
● ● ●
.parent {position: relative; } .child {width: 300px;height: 100px;padding: 20px;position: absolute;top: 50%;left: 50%;margin: -70px 0 0 -170px; }
.parent { position: relative; } .child { position: absolute; top: 50%; left: 50%;transform: translate(-50%, -50%); }
【使用flexbox】
.parent { display: flex; justify-content: center; align-items:center; }
相关问答
4.利用ID选择器在style标签中,设置div标签的样式属性,如宽度、高度、行高、字体属性等。5.保存代码并运行Web项目,打开浏览器预览效果,但是不知道字体是否居...
使用CSS将字体居中可以使用HTML中的标签,简单方便。具体介绍CSS中Center标签定义、其使用方法及相关内容:对浏览器支持:所有浏览器都支持标签。定...
用样式啊,水平居中代码是text-align:center垂直方向用line-height使用CSS将字体居中可以使用HTML中的标签,简单方便。具体介绍CSS中Center标签...
常用的水平居中css代码:text-align:center。比如在id=nav的div中,给nav的style属性赋予text-align:center,则里面的图文内容就会在该div水平中间显.....
1、首先打开SublimeText软件,新建一个HTML页面,2、然后我们在html页面中加入div标签,并且在div标签中加入一些文字,3、接下来我们给div标签编写CSS样式,...
html,填充问题基础代码。2、在index.html中的标签中...需要准备的材料分别有:电脑、浏览器、html编辑器。1、首先,打开html编辑器,新建html文件,例如:index...
CSS里用一个样式把表格里所有文字都放中间,首先需要理解父级元素的概念,要让所有的表格文字都居中,那么CSS的文字居中属性,自然就要给table,然后通过text-al...
方法:1、在标签中使用style属性,添加“text-align:center;”样式来设置文字水平居中;2、使用style属性,添加“vertical-align:middle;display:ta...
1.将文字居中需要进行一定的操作,但是可以实现。2.在MyEclipse中,可以通过添加CSS样式来实现文字居中。具体操作是在需要居中的文字所在的标签中添加样式:te...
在WPS文字的表格中,文字上下居中的操作方法:在WPS文字中选中要设置上下居中的单元格;选择“表格工具”选项卡;选择“对齐方式”按钮的下半部分;在下拉列表中...