要让按钮居中,可以使用CSS来控制。以下是一些常见的方法:
button {
text-align: center;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.container button {
/* 如果要垂直居中,可以使用这个 */
margin-top: auto;
margin-bottom: auto;
}
button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
以上方法可以根据实际情况进行调整,以达到最佳的效果。