1. 程式人生 > >fixed定位之後,如何讓div上下垂直居中

fixed定位之後,如何讓div上下垂直居中

在div用fixed定位之後,接下來想要其垂直居中,

需要在fixed定位的那個div  jxd-right上定義,  display:table;margin-top:auto;  margin-bottom:auto;

然後在 裡面的div fixedmiddle定義 display:table-cell;,即可做到垂直居中

但是ie上實現無效。

.jxd-right{     position:fixed;     top: 95px;     bottom:0;     right:100px;     display:table;     width:80px;     margin-top:auto;     margin-bottom:auto; } .jxd-fixedmiddle{     display:table-cell; }