Как убрать строку из строки? - PullRequest
0 голосов
/ 06 апреля 2019

Как убрать строку из строки таблицы? Смотрите ниже:

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
  <br /><br /><br />
  <table class="table">
    <tbody>
      <tr style="text-align: center;">
        <td>Quantity</td>
        <td>Buy</td>
      </tr>
      <tr>
        <td><input type="number" class="form-control" id="quantity" placeholder="Quantity" name="quantity"></td>
        <td><input type="number" class="form-control" id="buy" placeholder="Buy Amount" name="buy"></td>
      </tr>
    </tbody>
  </table>
</div>

Как убрать строку из строки таблицы? См выше

1 Ответ

0 голосов
/ 06 апреля 2019

Используйте table-borderless class to table tag.Ссылка здесь .

<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
  <br /><br /><br />
  <table class="table table-borderless">
    <tbody>
      <tr style="text-align: center;" class="">
        <td>Quantity</td>
        <td>Buy</td>
      </tr>
      <tr>
        <td><input type="number" class="form-control" id="quantity" placeholder="Quantity" name="quantity"></td>
        <td><input type="number" class="form-control" id="buy" placeholder="Buy Amount" name="buy"></td>
      </tr>
    </tbody>
  </table>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...