使用CSS作到徹底居中

咱們都知道 margin:0 auto;的樣式能讓元素水平居中,而margin: auto; 卻不能作到垂直居中……直到如今。可是,請注意!想讓元素絕對居中,只須要聲明元素高度,而且附加如下樣式,就能夠作到: .Absolute-Center { margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; } 我並
相關文章
相關標籤/搜索