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

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

div+css 怎么让一个小div在另一个大div里面 垂直居中

方法1:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.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
;
}

方法2:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.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
;
        
}

方法3:

1
2
3
4
5
6
7
8
9
10
11
12
13
.parent {
            
width
:
800px
;
            
height
:
500px
;
            
border
:
2px 
solid 
#000
;
            
display
:flex;
            
justify-
content
:
center
;
            
align-items:
center
;
        
}
        
.child {
            
width
:
200px
;
            
height
:
200px
;
            
background-color
red
;
        
}

方法4:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.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/as3lib/p/6747722.html

你可能感兴趣的文章
开了香槟的Kubernetes并不打算放慢成功的脚步
查看>>
关于Mac 下 Charles的使用 以及碰到无法抓包的问题
查看>>
7月份前端资源分享
查看>>
搜狗手机助手联合腾讯御安全 共建APP安全生态环境
查看>>
Codeigniter 4.0-dev 版源码学习笔记之五——相对于 3.x 的变化
查看>>
(译 & 转载) 2016 JavaScript 后起之秀
查看>>
GB(一)
查看>>
方面和服务,差别大吗?
查看>>
Infor喜获中国智能制造与电商物流大奖
查看>>
瑞士科学家研发飞行夹克,用户可以像鸟一样任意飞翔
查看>>
互金启示录:流量思维的末路
查看>>
「镁客·请讲」镁伽机器人黄瑜清:有需求没供给,协作机器人市场存在“两极现象”...
查看>>
GoPro 研发无人机意欲如何?
查看>>
Ubuntu 16.04清楚Dash历史记录
查看>>
随机生成数的方法
查看>>
Oracle APEX 系列文章5:在阿里云上打造属于你自己的APEX完整开发环境 (进一步优化)...
查看>>
大型分布式C++框架《二:大包处理过程》
查看>>
携手科技出版巨擎 推动中国IT人才成长 51CTO与人民邮电出版社达成战略合作
查看>>
11g RAC 如何备份OCR,利用备份恢复OCR,ocrdump
查看>>
WCF序列化
查看>>