(页底留言开放,欢迎来吐槽)

● ● ●

在网页上使 HTML 元素居中看似一件很大略的事情. 至少在某些情形下是这样的,但是繁芜的布局每每使一些办理方案不能很好的发挥浸染。

html设置body居中用CSS实现居中的七种办法 Webpack

在网页布局中元素水平居中比元素垂直居中要大略不少,同时实现水平居中和垂直居中每每是最难的。
现在是相应式设计的时期,我们很难确切的知道元素的准确高度和宽度,以是一些方案不大适用。
据我所知, 在CSS中至少有六种实现居中的方法。
我将利用下面的HTML构造从大略到繁芜开始讲解:

1

2

3

<divclass=\"大众center\"大众>

<imgsrc=\"大众jimmy-choo-shoe.jpg\"大众alt>

</div>

鞋子图片会改变,但是他们都会保持500pxX500px的大小。
HSL colors 用于使背景颜色保持同等。

利用text-align水平居中

有时显而易见的方案是最佳的选择:

1

2

3

4

5

6

7

8

div.center{

text-align: center;

background: hsl(0, 100%, 97%);

}

div.centerimg

{

width: 33%; height: auto;

}

这种方案没有使图片垂直居中:你须要给<div> 添加 padding 或者给内容添加 margin-top和 margin-bottom使容器与内容之间有一定的间隔。

利用 margin: auto 居中

这种办法实现水平居中和上面利用text-align的方法有相同局限性。

1

2

3

4

5

6

7

8

9

div.center{

background: hsl(60, 100%, 97%);

}

div.centerimg {

display: block;

width: 33%;

height: auto;

margin: 0auto;

}

把稳: 必须利用display: block使 margin: 0 auto对img元素生效。

利用table-cell居中

利用 display: table-cell, 而不是利用table标签; 可以实现水平居中和垂直居中,但是这种方法须要添加额外的元素作为外部容器。

1

2

3

4

5

<divclass=\公众center-aligned\"大众>

<divclass=\"大众center-core\"大众>

<imgsrc=\公众jimmy-choo-shoe.jpg\"大众>

</div>

</div>

CSS:

1

2

3

4

5

6

7

8

9

10

11

12

13

.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+浏览器上生效。

利用absolute定位居中

这种 方案 有非常好的跨浏览器支持。
有一个缺陷便是必须显式声明外部容器元素的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在他的 博客 中演示了这种方案的几种变革。

利用translate居中

Chris Coiyer 提出了一个利用 CSS transforms 的新方案。
同样支持水平居中和垂直居中:

1

2

3

4

5

6

7

8

9

10

11

.center{

background: hsl(180, 100%, 97%);

position: relative;

min-height: 500px;

}

.centerimg {

position: absolute;

top: 50%; left: 50%;

transform: translate(-50%, -50%);

width: 30%; height: auto;

}

但是有以下几种缺陷:

CSS transform 在部分就浏览器上须要利用 前缀。

不支持 IE9 以下的浏览器。

外部容器须要设置height (或者用其他办法设置),由于不能获取 绝对定位 的内容的高度。

如果内容包含笔墨,现在的浏览器合成技能会使笔墨模糊不清。

利用Flexbox居中

当新旧语法差异和浏览器前缀消逝时,这种方法会成为主流的居上钩划。

1

2

3

4

5

6

7

8

9

.center{

background: hsl(240, 100%, 97%);

display: flex;

justify-content: center;

align-items: center;

}

.centerimg {

width: 30%; height: auto;

}

在很多方面 flexbox 是一种大略的方案, 但是它有新旧两种语法以及早期版本的IE缺少支持 (只管可以利用 display: table-cell作为降级方案)。

现在规范已经终极确定,当代浏览器也大都支持,我写了一篇详细的教程 教程。

利用calc居中

在某些情形下比flexbox更全面:

1

2

3

4

5

6

7

8

9

10

11

12

.center{

background: hsl(300, 100%, 97%);

min-height: 600px;

position: relative;

}

.centerimg {

width: 40%;

height: auto;

position: absolute;

top: calc(50%- 20%);

left: calc(50%- 20%);

}

很大略,calc 许可你基于当前的页面布局打算尺寸。
在上面的大略打算中, 50% 是容器元素的中央点,但是如果只设置50%会使图片的左上角对齐div的中央位置。
我们须要把图片向左和向上各移动图片宽高的一半。
打算公式为:

1

2

top: calc(50%- (40%/ 2));

left: calc(50%- (40%/ 2));

在现在的浏览个中你会创造,这种方法更适用于当内容的宽高为固定尺寸:

1

2

3

4

5

6

.centerimg {

width: 500px; height: 500px;

position: absolute;

top: calc(50%- (300px/ 2));

left: calc(50%- (300px2));

}

我在 这篇文章 中详细讲解了calc。

这种方案和flex一样有许多相同的缺陷: 虽然在当代浏览器中有良好的支持,但是在较早的版本中仍旧须要浏览器前缀,并且不支持IE8。

1

2

3

4

5

6

.centerimg {

width: 40%; height: auto;

position: absolute;

top: calc(50%- 20%);

left: calc(50%- 20%);

}

当然还有 其他更多的方案。
理解这七种方案之后,web开拓职员在面对元素居中的时候会有更多的选择。

干货!
免费领取腾讯高等讲师网页设计教程

点我领取

点击下方“阅读原文”结交更多有才华的设计师!

↓↓↓