CSS中間對齊可以讓我們在頁面布局時更加的靈活,不同于靠左對齊的排版方式在頁面中看起來更加的舒適。下面我們來看看在CSS中如何實現中間對齊。
/* 通過設置父容器的text-align屬性來實現子元素中間對齊 */ .parent { text-align: center; } .child { display: inline-block; } /* 通過設置子元素的margin屬性自動居中 */ .parent { position: relative; } .child { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } /* 通過flexbox布局來實現元素中間對齊 */ .parent { display: flex; justify-content: center; align-items: center; }
以上就是CSS中實現中間對齊的幾種方式,通過設置父容器的text-align屬性來實現子元素的中間對齊是最簡單,同時在我們平時的工作中也是最常用的方式。
下一篇css 二級向上菜單