Bootstrap 按钮对齐

Bootstrap Button alignment

提问人:Ray Bond 提问时间:10/21/2023 最后编辑:Ray Bond 更新时间:10/21/2023 访问量:44

问:

我在 bootstrap4 中的按钮触及桌子的顶部。如何添加一些间隙并将其与表格边缘右对齐?

    <div class="container">
    <div class="table-title">
    <div class="row">
        <div class="col-sm-8"><h5>Birds</h5></div>
        <div class="col-sm-4">
            <button type="button" class="btn btn-info add-new">
                <i class="fa fa-plus"></i> Add New
            </button>
        </div>
    </div>
    </div>
    

    <table class="table">
        <thead class="table-light">
          <tr>
            <th>Name</th>
            <th>Sex</th>
            <th>Status</th>
            <th>Owner</th>
            <th>IIS</th>
            <th>Actions</th>
          </tr>
        </thead>
        <tbody>
            <tr *ngFor="let bird of birds$ | async">
            <td>bird</td>
            <td>sex</td>
            <td>status</td>
            <td>owner</td>
            <td>IIS</td>
            <td>
                <a style="padding-left:10px;"><fa-icon [icon]="iconEdit"></fa-icon></a>
                <a style="padding-left:10px;"><fa-icon [icon]="iconTrash"></fa-icon></a>
            </td>
          </tr>
        </tbody>
      </table>

enter image description here

我试图添加一个空白行,但这什么也没做。

在这里摆弄 : https://jsfiddle.net/df0e4uv3/

HTML CSS Angular 引导程序-4

评论

0赞 Yong Shun 10/21/2023
你的 Fiddle 链接未使用你在问题中提供的代码。
0赞 Ray Bond 10/21/2023
对不起,添加工作链接。

答:

1赞 Sean K. 10/21/2023 #1

尝试添加 ..或者你可以把它添加到 了解详情,你可以参考这里.py-3<div class="col-sm-4"><div class="col-sm-4 py-3"><table>