兼容IE8, 对于IE6/7,咱们可使用display: inline-block属性代替
.parent { display: table; } .child { display: table-cell; vertical-align: middle; //可调整子元素的对齐方式 }