css 居中代码大全(脚本学堂整理)

发布时间:2020-05-14编辑:脚本学堂
本文介绍下,css实现居中显示的几种方法,分享下css居中显示的常用代码,感兴趣的朋友可以参考下。

本节内容:
css 居中显示。

在前端设计中,经常用CSS来控制块级元素的水平或是垂直位置,居中显示操作比较多见。

本文介绍下如何用CSS来控制元素的居中。

1、单行垂直居中
文字在层中垂直居中vertical-align 属性是做不到的。

分享一个技巧:设置height的高度与line-height的高度相同!
 

复制代码 代码示例:
<div style="line-height:500px;height:500;"></div>

2、层水平居中
设置div的宽度小于父div的宽度,设置 margin:0 auto;,即可让div居中
 

复制代码 代码示例:
#parentdiv
{
width: 500px;
}
#childdiv {
width: 200px;
margin:0 auto;
}

3、层中的文字水平居中
在childdiv的css加上text-align:center;
 

复制代码 代码示例:
#parentdiv
{
width: 500px;
}
#childdiv {
width: 200px;
margin:0 auto;
text-align:center;
}

4、div层垂直居中
 

复制代码 代码示例:
<div style="width:275px;height:375px;border: solid red;">
<div style=" background:green;height: 375px; width: 275px; position: relative; display: table-cell; vertical-align: middle;">
     <div style=" background:red;position:static;position:absolute。9; top: 50%;">
        <div style=" background:blue;position: relative; top: -50%;">
           </div>
      </div>
   </div>
</div>

5、div层垂直水平居中,英文超长换行
 

复制代码 代码示例:
<div style="float:left;width:275px;height:375px;border: solid red;">
<div style=" height: 375px; width: 275px; position: relative; display: table-cell; vertical-align: middle;">
          <div style="position:static;position:absolute。9; top: 50%;">
           <div style="position: relative; top: -50%; text-align: center;">
              <div style="width: 85px;WORD-WRAP: break-word;TABLE-LAYOUT: fixed;word-break:break-all;margin:0 auto;">
                 </div>
                  </div>
          </div>
         </div>
</div>

6、div垂直滚动
 

复制代码 代码示例:
<div style="width: 160px; height: 260px; overflow-y: scroll; border: 1px solid;">http://www.jb200.com </div>

7、垂直居中和使用text-align水平居中
 

复制代码 代码示例:
<div style="float:left;width:275px;height:375px;border: solid red;">
<div style=" height: 375px; width: 275px; position: relative; display: table-cell; vertical-align: middle;">
          <div style="position:static;position:absolute。9;top: 50%;">
           <div style="position: relative; top: -50%; text-align:center;">
            <div style="width: 275px;">
              <div style="width: 160px;WORD-WRAP: break-word;TABLE-LAYOUT: fixed;word-break:break-all;text-align:left;">
 </div>     
 </div>              
    </div>
       </div>
         </div>
</div>

8、垂直居中和使用margin水平居中
 

复制代码 代码示例:
<div style="float:left;width:275px;height:375px;border: solid red;">
<div style=" height: 375px; width: 275px; position: relative; display: table-cell; vertical-align: middle;">
       <div style="position:static;position:absolute。9; top: 50%;">
       <div style="position: relative; top: -50%; ">
      <div style="margin:0 auto;width: 160px;WORD-WRAP: break-word;TABLE-LAYOUT: fixed;word-break:break-all;">
              </div>                             
              </div>
          </div>
         </div>
</div>

9、背景图片居中
 

复制代码 代码示例:
background-position:center center

共9个css居中代码,各有各的用处,希望大家实际练习一下,争取全部掌握了。

>>> 查看更多 css 居中 相关教程 <<<