且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

右对齐按钮

更新时间:2023-12-04 12:57:34

使用此

.button-parent {
    text-align: right;
}

button {
    display: inline-block;
}

或者如果您想使其绝对定位,则可以使用此

or if you want to make it position absolutely, you can use this

.add-me {
    position: absolute;
    right: 20px;
}