在網(wǎng)頁設(shè)計(jì)過程中,如何實(shí)現(xiàn)不固定高度垂直居中元素是很常見的問題。這里介紹一些實(shí)現(xiàn)方法。
/* 方法一:使用絕對(duì)定位 */ .parent { position: relative; } .child { position: absolute; top: 50%; transform: translateY(-50%); } /* 方法二:使用Flex布局 */ .parent { display: flex; justify-content: center; align-items: center; } /* 方法三:使用Grid布局 */ .parent { display: grid; } .child { align-self: center; justify-self: center; } /* 方法四:使用文本居中 */ .parent { display: table-cell; vertical-align: middle; text-align: center; }
以上幾種方法都有其適用性,具體使用可以根據(jù)實(shí)際情況進(jìn)行選擇。
上一篇html5制作心形代碼
下一篇html5制作愛心代碼