Centering 2 Divs inside another vertically

前端 未结 2 791
挽巷
挽巷 2021-02-14 00:45

I have 2 divs that I want to centre vertically inside another div. At the moment I have:

http://jsfiddle.net/5vpA3/1/

Now I understand what is going on here, but

2条回答
  •  死守一世寂寞
    2021-02-14 01:14

    Live Demo

    • Remove float: left from #left and #right.
    • Instead, use display: inline-block:

      #left, #right {
          display: inline-block;
          vertical-align: middle;
      }
      
    • Due to using display: inline-block, you have to deal with the whitespace issue. I chose to remove the whitespace in the HTML between
    and

提交回复
热议问题