CSS可以幫我們實(shí)現(xiàn)內(nèi)容的水平垂直居中,適用于各種元素在容器中的居中展示。下面是幾種實(shí)現(xiàn)方法:
/* 方法一:absolute + transform */ .container { position: relative; } .target { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } /* 方法二:display + flex */ .container { display: flex; justify-content: center; align-items: center; } /* 方法三:grid */ .container { display: grid; } .target { justify-self: center; align-self: center; }
以上三種方法都可以實(shí)現(xiàn)水平垂直居中,根據(jù)實(shí)際情況選擇適合自己的方法即可。
上一篇用css控制img
下一篇mysql 索引 大小