在網頁設計過程中,如何實現不固定高度垂直居中元素是很常見的問題。這里介紹一些實現方法。
/* 方法一:使用絕對定位 */ .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; }
以上幾種方法都有其適用性,具體使用可以根據實際情況進行選擇。
上一篇html5制作心形代碼
下一篇html5制作愛心代碼