实现水平居中/垂直居中的一些方法
2018-06-24 01:14:15来源:未知 阅读 ()
一、水平居中
1. text-align:center(行内元素)
给其父元素设置属性 text-align:center;
2. margin: 0 auto(块级元素)
给元素本身设置 margin: 0 auto;
3. 元素的宽度固定
1?? position+margin-left
.ele{
position:absolute;
width:固定;
left:50%;
margin-left:-0.5宽度;
}
2?? position+left:0;right:0;margin:0 auto
.ele{
position:absolute;
width:固定;
left:0;
right:0;
margin:0 auto;
}
4.元素的宽度不固定
1??css3-transform
.ele{
position:absolute;
left:50%;
transform:translate(-50%,0);
}
2??css3-width:fit-content(当需要居中的元素设置了float:left时,可以给该元素的父元素设置如下属性)
.ele-parent{
width: -moz-fit-content;
width: -webkit-fit-content;
width:fit-content;
margin:0 auto;
}
该属性目前只支持Chrome 和 Firefox浏览器.
3??flex
.ele-parent{
display: flex;
justify-content: center;
}
二、垂直居中
1. line-height:eleparent-height
单行文本的垂直居中可以设置属性 line-height:父元素height
2. 元素的高度固定
1??position+margin-top
.ele-parent{
position:relative;
}
.ele{
position:absolute;
top:50%;
height:固定;
margin-top:-0.5高度;
}
2?? position+top:0;bottom:0;margin:auto 0
.ele{
position:absolute;
height:固定;
top:0;
bottom:0;
margin:auto 0;
}
3.元素高度不固定
1??vertical-align
.ele-parent{ display:table; } .ele{ display:table-cell;
vertical-align:middle; }
2??css3-transform
.ele{
position:absolute;
top:50%;
transform: translate(0,-50%);
}
3??flex
.ele-parent{
display: flex;
align-items:center;
}
暂时只整理到这些,不足之处还请 批评指正!!!
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:页内跳转(锚点练习)
下一篇:装饰我的博客
- DIV居中的经典方法 2020-06-13
- position: sticky实现导航栏下滑吸顶效果 2020-05-30
- 自学web前端达到什么水平,才能满足求职的标准? 2020-05-04
- Vue 结合html2canvas和jsPDF实现html页面转pdf 2020-04-25
- 12.居中总结 2020-04-17
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