1、通過margin:0auto;text-align:center實(shí)現(xiàn)CSS水平居中。
這種方法是實(shí)現(xiàn)CSS水平居中最最常用的,我在前端開發(fā)中大概有60%的CSS水平居中就是通過“margin:0auto;text-align:center”實(shí)現(xiàn)的。
2、通過display:flex實(shí)現(xiàn)CSS水平居中。
隨著越來越多兼容flexbox,所以通過“display:flex”實(shí)現(xiàn)CSS水平居中的方案也越來越受青睞。
通過display:flex實(shí)現(xiàn)CSS水平居中的原理是父元素display:flex;flex-direction:column;而子元素align-self:center;
這個(gè)跟CSS垂直居中的原理是一樣的,只是在flex-direction上有所差別,一個(gè)是row(默認(rèn)值),另外一個(gè)是column。
3、通過display:table-cell和margin-left實(shí)現(xiàn)CSS水平居中。
對(duì)于父元素和子元素的寬度都確定的情況,適合通過display:table-cell和margin-left實(shí)現(xiàn)CSS水平居中。
使用時(shí),父元素display:table-cell,子元素給剩余寬度一半的margin-left。