博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS网页布局垂直居中整理
阅读量:5974 次
发布时间:2019-06-19

本文共 1030 字,大约阅读时间需要 3 分钟。

一、使用CSS3处理垂直居中方式

1.使用Flex布局处理(推荐),简单好用

body,html{
width:100%; height:100%;}.out {
width: 20%; height: 50%; border: 1px solid blue; display: flex; justify-content: center; /*水平居中*/ align-items:center;/*垂直方向居中*/}.inner {
width: 50%; height: 50%; background:red;}

2.使用定位top+translateY()

body,html{
width:100%; height:100%;}.out {
width: 20%; height: 40%; border: 1px solid rgba(0, 255, 0, 0.8);}.inner {
width: 50%; height: 50%; margin: 0px auto; position: relative; top: 50%; transform: translateY(-50%); background: rgba(255, 0, 0, 0.8);}

 

二、Css2中垂直居中方式

1.使用定位top+margin-top(-number)

body,html{
width:100%; height:100%;}.out {
width: 20%; height: 50%; border: 1px solid blue;}.inner {
width: 50%; height: 100px; margin: 0px auto; position: relative; top:50%; margin-top: -50px; background:red;}

更多:

转载地址:http://mcbox.baihongyu.com/

你可能感兴趣的文章
MySQL备份之分库分表备份脚本
查看>>
Java 与 Netty 实现高性能高并发
查看>>
SurfControl人工智能新突破 领跑反垃圾邮件
查看>>
一个动态ACL的案例
查看>>
linux基础中的基础
查看>>
jquery 表单验证
查看>>
openstack 之 windows server 2008镜像制作
查看>>
VI快捷键攻略
查看>>
Win server 2012 R2 文件服务器--(三)配额限制
查看>>
卓越质量管理成就创新高地 中关村软件园再出发
查看>>
linux rsync 远程同步
查看>>
httpd的manual列目录漏洞
查看>>
myeclipse2014破解过程
查看>>
漫谈几种反编译对抗技术
查看>>
VS 编译错误
查看>>
Timer 和 TimerTask 例子
查看>>
Spring BOOT 集成 RabbitMq 实战操作(一)
查看>>
安装python3.5注意事项及相关命令
查看>>
进程通信之无名信号量
查看>>
并发串行调用接口
查看>>