> 웹 프론트엔드 > HTML 튜토리얼 > css 居中_html/css_WEB-ITnose

css 居中_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:23:57
원래의
790명이 탐색했습니다.

1、把margin 设为atuo

  margin :简写属性在一个声明中设置所有外边距属性。该属性可以有 1 到 4 个值。

  具体来说就是把要居中的元素的margin-left和margin-right都设为auto,此方法只能进行水平的居中,且对浮动元素或绝对定位元素无效

<!DOCTYPE html><html><head>   <title>margin 居中</title>   <meta charset="utf-8"><style type="text/css">#test{   width:50px;   height: 50px;   background-color: blue;   margin: auto;}</style></head><body><div id="test"></div></body></html>
로그인 후 복사

结果:

2、text-align 居中

  text-align 属性规定元素中的文本(只能对图片,按钮,文字等行内元素(display为inline或inline-block等))的水平对齐方式。

  该属性通过指定行框与哪个点对齐,从而设置块级元素内文本的水平对齐方式。通过允许用户代理调整行内容中字母和字之间的间隔,可以支持值 justify;不同用户代理可能会得到不同的结果。

<!DOCTYPE html><html><head>   <title>margin 居中</title>   <meta charset="utf-8"><style type="text/css">#test{   text-align: center}div{    width: 100px;    background-color: rgb(12,110,221);    margin-bottom: 20px;}</style></head><body><div id="test">    测试</div><div >    测试</div></body></html>
로그인 후 복사

  结果如下:

  解析:测试1的div 添加了text-align:center 的属性,故文字居中, 测试2所在div没有加text-align:center,故默认居左。 但是这里只是div中的文字居中。

3、使用绝对定位来居中(水平垂直居中)

  这种方式只适用于那些我们已经知道它们的宽度和高度的元素。

  原理:通过把这个绝对定位元素的left或top的属性设为50%,这个时候元素并不是居中的,而是比居中的位置向右或向左偏了这个元素宽度或高度的一半的距离,所以需要使用一个负的margin-left或margin-top的值来把它拉回到居中的位置,这个的margin值就取元素宽度或高度的一半。

<!DOCTYPE html><html><head>   <title>绝对定位 居中</title>   <meta charset="utf-8"><style type="text/css">body{    margin: 0;    padding: 0;}#test{   width:50px;   height: 50px;   background-color: blue;      position: absolute;   left : 50%;     top:50%;   margin-left: -25px;    /* 宽度的一半 */   margin-top: -25px;     /* 高度的一半 */}</style></head><body><div id="test"></div></body></html>
로그인 후 복사

  结果如下:

4、另外的绝对定位方式(水平垂直居中)

  只适用于知道高度和宽度的元素。

  只支持IE9+,谷歌,火狐等符合w3c标准的现代浏览器。

demo:

<!DOCTYPE html><html><head>   <title>绝对定位 居中</title>   <meta charset="utf-8"><style type="text/css">body{    margin: 0;    padding: 0;}#test{   width:50px;   height: 50px;   /* 高度和宽度必须固定 */   background-color: blue;   position: absolute;   left : 0;     top:0;   right: 0;   bottom:0;   margin: auto;}</style></head><body><div id="test"></div></body></html>
로그인 후 복사

 

  结果如下:

   致谢:感谢您的阅读!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿