18910140161

垂直居中对齐浮动元素的方法

顺晟科技

2021-08-26 12:53:41

212

如何垂直居中一个浮动元素

1. 已知元素的高宽

  #div1{
    background-color:#6699FF; 
    width:200px; 
    height:200px; 
    position: absolute; //父元素需要相对定位 
    top: 50%; 
    left: 50%; 
    margin-top:-100px ; //二分之一的 height,width 
    margin-left: -100px; 
    } 

2. 未知元素的高宽

    #div1{ 
      width: 200px; 
      height: 200px; 
      background-color: #6699FF; 
      margin:auto; 
      position: absolute; //父元素需要相对定位 
      left: 0; 
      top: 0; 
      right: 0; 
      bottom: 0; 
      } 
相关文章
我们已经准备好了,你呢?
2024我们与您携手共赢,为您的企业形象保驾护航