当宽度为自动时,如何将按钮定位到 table 的右下角?

How to position button to bottomright of table when width is auto?

我在这里包含了我的 plunker link https://plnkr.co/edit/TD6iQJvIExwTeJ9QPbRS?p=preview

我想让提交按钮出现在右下角 table.My table 宽度根据数据变化。我的 table 的宽度是自动的。那么每次如何将按钮定位到右下角。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Basic Table</h2>
  <p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>            
  <table class="table" style="width:auto;">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>john@example.com</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>mary@example.com</td>
      </tr>
      <tr>
        <td>July</td>
        <td>Dooley</td>
        <td>july@example.com</td>
      </tr>
    </tbody>
  </table>
  <div class="col-sm-1">
    <button class="btn btn-success pull-right">SUBMIT</button>
  </div>
</div>

</body>
</html>

将网格 class 更改为 col-sm-12 并将 table 的宽度设为 100%。 添加了预览, https://plnkr.co/edit/M3p2bpj460niGCu59irR?p=preview

你可以试试这个代码。

尝试从 tbody 中删除最后一个 tr 并检查宽度和按钮位置时。

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<div class="container">
  <h2>Basic Table</h2>
  <p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>            
  <table class="table" style="width:auto;">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>john@example.com</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>mary@example.com</td>
      </tr>
      <tr>
        <td>July</td>
        <td>Dooley</td>
        <td>july@example.com</td>
      </tr>
      <tr>
        <td>July jan</td>
        <td>Dooley Hello</td>
        <td>julyjan12345678@example.com</td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <td colspan="3" align="right"><button class="btn btn-success pull-right">SUBMIT</button></td>
      </tr>
    </tfoot>
  </table>
</div>

</body>
</html>