CSS水平垂直居中
2019-12-13 06:29:54来源:博客园 阅读 ()
CSS水平垂直居中
先来一个盒盒(要操作它嘛)
<div style="height:50px;border:1px solid red;"> <label style="line-height:50px">单行文本label垂直居中:设置line-height为父级行高</label> </div>
水平垂直居中
方式一:Flex布局 [推荐]
优点:内容块的高度任意,优雅的溢出。
缺点:IE8/IE9不支持,需要浏览器前缀,渲染可能会有问题。
<div class="hv_flex"> <div style="width: 20px;">左</div> <div class="hv_flexChild">flex布局垂直水平居中</div> <div style="width: 20px;">右</div> </div> .hv_flex { display: flex; width: 600px; height: 100px; border: 1px solid red; justify-content: center; align-content: center; align-items: stretch; /* stretch让盒子内的每个元素的高度都等于行高 */ } .hv_flexChild { flex: 1; border: 2px solid green; left: 10px; right: 10px; }
方式二:after伪元素实现水平垂直居中 [推荐]
优点:兼容所有游览器
<div class="parent"> <div class="son">after伪元素实现水平垂直居中</div> </div> .parent { border: 2px solid blue; text-align: center; height: 100px; width: 600px; /* overflow: hidden; */ } .parent::after { content: ""; display: inline-block; vertical-align: middle; height: 100%; /* width: 100%; */ } .son { display: inline-block; vertical-align: middle; border: 1px solid red; /* width: 100%; */ }
方式三:left:0;right:0;top:0;bottom:0;margin:auto;
优点:简单
缺点:没有足够空间时, 子元素会被截断, 但不会有滚动条.
<div class="hv_parent"> <div class="hv_child1"> 方式一:left:0;right:0;top:0;bottom:0;margin:auto; </div> </div> .hv_parent { position: relative; width: 600px; height: 180px; border: 1px solid red; } .hv_child1 { border: 2px solid green; position: absolute; /* height: 40px; */ /* width: 400px; */ left: 10px; right: 10px; top: 0; bottom: 0; margin: auto; }
方式四:left: 50%;top: 50%;transform: translate(-50%, -50%); [推荐]
优点:代码量少
缺点:IE8不支持, 属性需要追加浏览器厂商前缀, 可能干扰其他 transform 效果, 某些情形下会出现文本或元素边界渲染模糊的现象.
<div class="hv_parent"> <div class="hv_child2"> 方式二:left: 50%;top: 50%;transform: translate(-50%, -50%); </div> </div> .hv_parent { position: relative; width: 600px; height: 180px; border: 1px solid red; } .hv_child2 { border: 2px solid blue; /* margin-left:50%; */ /* margin-top: 50%; */ width: 400px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
方式五:height:固定;width:固定;left:50%;top:50%;margin-top:-0.5height;margin-left:- 0.5width;
优点: 适用于所有浏览器.
缺点: 父元素空间不够时, 子元素可能不可见(当浏览器窗口缩小时,滚动条不出现时).如果子元素设置了overflow:auto, 则高度不够时, 会出现滚动条.
<div class="hv_parent"> <div class="hv_child3"> 方式三:height:固定;width:固定;left:50%;top:50%;margin-top:-0.5*height;margin-left:- 0.5*width; </div> </div>
参考文献
[1] (https://louiszhai.github.io/2016/03/12/css-center/)
原文链接:https://www.cnblogs.com/Army-Knife/p/12029824.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:HTML常用标签
下一篇:HtEditor使用总结
- 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