有没有办法将按钮的位置或对齐方式更改为垂直而不是水平? 我四处寻找,但除了改变CSS的提示外,无法找到任何具体内容。 然而,这个选项看起来非常麻烦,并且不能确定射击方式。
有人可以帮帮我吗?
答案 0 :(得分:1)
你走了:
swal({
title: 'SweetAlert2 Vertical Buttons',
showCancelButton: true
})

.swal2-actions {
flex-direction: column;
}
.swal2-actions button {
margin: .2em !important;
}

<script src="https://cdn.jsdelivr.net/npm/sweetalert2@7"></script>
&#13;