首页 > 作文

CSS将div内容垂直居中案例总结

更新时间:2023-04-07 20:04:11 阅读: 评论:0

一、行高(line-height)法

如果要垂直居中的只有一行或几个文字,那它的制作最为简单,只要让文字的行高和容器的高度相同即可,比如:

p { height:30px; line-height:30px; width:100px; overflow:hidden; }

这段代码可以达到让文字在段落中垂直居中的效果。

二、内边距(padding幼儿教育信息)法

另一种方法和行高法很相似,它同样适合一行或几行文字垂直居中,原理就是利用padding将内容垂直居中,比如:

p { padding:20px 0; }

这段代码的效果和line-height法差不多。

三、模拟表格法

将容器设置为display:table,然后将子元素也就是要垂直居中显示的元素设置为display:table-cell,然后加上vertical-align:middle来实现。

html结构如下:

<div id="wrapper">    <div id="cell">        <p>测试垂直居中效果测试垂直居中效果</p>        <p>测试垂直居中效果测试垂直居中效果</p>    </div></div>

css代码:

#wrapper {display:table;width:300px;height:300px;background:#000;margin:0 auto;c举一反三olor:red;}#cell{display:table-cell; vertical-align:middle;}

实现如图所示:

遗憾的是ie7及以下不支持。

四、css3的transform来实现

css代码如下:

.center-vertical{  position: relative;  top:50%;  transform:translatey(-50%);}.center-horizontal{  position: relative;  left:50%;  transform:translatex(夸人有才华的成语-50%); }

五:css3的box方法实现水平垂直居中

html代码:

<div class="center">  <div class="text">    <p>我是多行文字</p>    <p>我是多行文字</p>    <p>我是多行文字</p>  </div></div>

css代码:

.center {  width: 300px;  height: 200px;  padding: 10px;  border: 1px solid #ccc;  background:#000;  color:#fff;  margin: 20px auto;  display: -webkit-box;  -webkit-box-orient: horizontal;  -webkit-box-pack: center;  -webkit-box-align: center;    display: -moz-box;  -moz-box-orient: horizontal;  -moz-box-pack: center;  -moz-box-align: center;    display: -o-box;  -o-box-orient: horizontal;  -o-box-pack: center;  -o-box-align: center;    display: -ms-box;  -ms-box-orient: horizontal;  -ms-box-pack: center;  -ms-box-align: center;    display: box;  box-orient: horizontal;  box-pack: center;  box-align: center;}

结果如图:

六:flex布局(2018/04/17补充

html代码:

<div class="flex">    <div>       <p>我是多行文字我是多行文字我是多行文字我是多行文字</p>      <p>我是多行文字我是多行文字我是多行文香港海洋公园字我是多行文字</p>    </div></div>

闪光少女 电影css代码:

.flex{    /*flex 布局*/    display: flex;    /*实现垂直居中*/    align-items: center;    /*实现水平居中*/    justify-content: center;        text-align: justify;    width:200px;    height:200px;    background: #000;    margin:0 auto;    color:#fff;}

实现效果:

到此这篇关于css将div内容垂直居中案例总结的文章就介绍到这了,更多相关css将div内容垂直居中内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-07 20:04:09,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/dbdde115b7dbefddad1732bc7f41c90a.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:CSS将div内容垂直居中案例总结.doc

本文 PDF 下载地址:CSS将div内容垂直居中案例总结.pdf

标签:我是   代码   效果   文字
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图