將按鈕在 Div 中居中
在 Web 開發中,通常希望將按鈕在包含的 div 中居中。讓我們來探索應對這項挑戰的兩種解決方案:
使用 Flexbox
Flexbox 提供了一個沿著兩個軸對齊元素的優雅解決方案。要讓按鈕在div 內水平和垂直居中:
#wrapper { display: flex; align-items: center; justify-content: center; }
如果只需要水平居中,則可以使用justify-content 屬性:
#wrapper { display: flex; justify-content: center; }
Margin-基於方法
沒有Flexbox,可以使用以下方法將按鈕居中margins:
button { margin: -20px -50px; /* Offset to center */ position: relative; top: 50%; left: 50%; }
僅對於水平居中,可以使用以下兩種方法之一:
以上是如何將按鈕置於 Div 中?的詳細內容。更多資訊請關注PHP中文網其他相關文章!