CSS实现垂直居中的方法
2018-06-24 00:25:20来源:未知 阅读 ()
1. 把一些 div 的显示方式设置为表格,因此我们可以使用表格的 vertical-align
属性
<div class='wrapper'> <div class='content'>我是内容</div> </div>
.wrapper{ display: table; width:100px; height:100px; } .content{ display:table-cell; vertical-align: middle; }
2. 还是上面的结构 利用position absolute定位,这个方法 必须指定元素的高度
.wrapper{ position: relative; width:100px; height:100px; text-align: center; } .content{ position: absolute; width:100px; height:20px; top:50%; margin-top:-10px; }
3. 利用绝对定位元素的盒模型特性,在偏移属性为确定值的基础上,设置margin:auto
<div class="content"> Content here</div>
.content{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; height: 50px; width: 200px; }
4. 利用translate垂直居中
.content{ position: absolute; left:50%; top:50%; transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); width: 100px; height: 34px; }
5. 单行文本的垂直居中
.content{ height:100px; line-height:100px }
6. 多行单行文本的垂直居中
<div class="linebox"> <span> <p>我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,我是文字,</p> <i>后面是文字。</i> </span> </div>
.linebox{ width:300px; height:300px; border:1px solid #ccc; line-height: 300px; text-align: center; margin:0 auto; padding:10px; } .linebox span{ display: inline-block; vertical-align: middle; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- DIV居中的经典方法 2020-06-13
- CSS中的float和margin的混合使用 2020-06-11
- Html/css 列表项 区分列表首尾 2020-06-11
- css与javascript重难点,学前端,基础不好一切白费! 2020-06-11
- ie8下透明度处理 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash