在 div 中创建居中按钮
可以通过多种方法实现在 div 中居中按钮。对于宽度为 100% 的 div,以下是实现它的方法:
使用 Flexbox(更新的答案)
Flexbox 提供了一种现代且灵活的方法:
#wrapper { display: flex; align-items: center; justify-content: center; }
这会将按钮垂直和中心对齐
使用固定宽度和定位(原答案)
如果按钮有固定的宽度和高度,可以使用相对定位和负边距:
button { height: 20px; width: 100px; margin: -20px -50px; position: relative; top: 50%; left: 50%; }
或者,仅对于水平对齐,使用 margin: 0 auto;或设置 text-align: center;在 div 上。
以上是如何让按钮在 Div 中居中?的详细内容。更多信息请关注PHP中文网其他相关文章!