博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Div+css 怎么让一个小div在另一个大div里面 垂直居中
阅读量:5966 次
发布时间:2019-06-19

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

.parent {          width:800px;          height:500px;          border:2px solid #000;          position:relative;} .child {            width:200px;            height:200px;            margin: auto;              position: absolute;              top: 0; left: 0; bottom: 0; right: 0;             background-color: red;}
.parent {            width:800px;            height:500px;            border:2px solid #000;            display:table-cell;            vertical-align:middle;            text-align: center;}.child {            width:200px;            height:200px;            display:inline-block;            background-color: red;}
.parent {            width:800px;            height:500px;            border:2px solid #000;            position:relative;}.child {            width:300px;            height:200px;            margin:auto;            position:absolute;/*设定水平和垂直偏移父元素的50%,再根据实际长度将子元素上左挪回一半大小*/            left:50%;            top:50%;            margin-left: -150px;            margin-top:-100px;            background-color: red;}

 

转载于:https://www.cnblogs.com/lchsirblog/p/9288113.html

你可能感兴趣的文章
js获取自定义属性的值
查看>>
Windows Server 2012 DHCP故障转移
查看>>
Multi thread: std::promise
查看>>
Linux服务器配置和管理:虚拟机安装CentOS6.7
查看>>
掌握ajax
查看>>
ASA下邮件发送经常失败
查看>>
python3第八天(面向对象)
查看>>
pomelo的session
查看>>
我的友情链接
查看>>
ubuntu atp&dpkg
查看>>
主要 次要通道
查看>>
利用贝叶斯分类器进行文本挖掘---笔记
查看>>
我的友情链接
查看>>
将ping命令结果输出到文本
查看>>
小蚂蚁学习mysql性能优化(8)--数据库结构优化--范式化和反范式化,水平分表,垂直分表...
查看>>
find
查看>>
L2TP/IPSec一键安装脚本
查看>>
听你自己的节奏
查看>>
MySQL触发器的使用
查看>>
Step1:Install EBS and Configure
查看>>