我正在使用flash来显示一条消息,但是按钮在文本旁边而不是右下角。我该如何重新定位按钮?
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<%= success %>
<button type="button" class="btn-close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
此外,我还想使按钮看起来更像这样:
https://getbootstrap.com/docs/5.3/components/close-button/
2条答案
按热度按时间vuktfyat1#
您需要相应的CSS和JS文件。
Get started with Bootstrap · Bootstrap v5.3
zysjyyx42#
您可以简单地在包含元素上使用class. text-right来右对齐块框或网格列中的Bootstrap按钮。它在Bootstrap 3和Bootstrap 4版本中都有效。或者您可以只将align-self-end类添加到项中以在底部对齐。