Bootstrap table without stripe / borders

后端 未结 16 868
天命终不由人
天命终不由人 2020-12-12 11:54

I\'m kinda stuck with a CSS problem while using Bootstrap. I\'m also using Angular JS with Angular UI.bootstrap (which might be part of the problem).

I\'m making a w

相关标签:
16条回答
  • 2020-12-12 12:19

    I'm late to the game here but FWIW: adding .table-bordered to a .table just wraps the table with a border, albeit by adding a full border to every cell.

    But removing .table-bordered still leaves the rule lines. It's a semantic issue, but in keeping with BS3+ nomenclature I've used this set of overrides:

    .table.table-unruled>tbody>tr>td,
    .table.table-unruled>tbody>tr>th {
      border-top: 0 none transparent;
      border-bottom: 0 none transparent;
    }
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
    <div class="container">
      <div class="row">
        <div class="col-xs-5">
          .table
          <table class="table">
            <thead>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
              </tr>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tbody>
            <tfoot>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </tfoot>
          </table>
        </div>
        <div class="col-xs-5 col-xs-offset-1">
          <table class="table table-bordered">
            .table .table-bordered
            <thead>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
              </tr>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tbody>
            <tfoot>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </tfoot>
          </table>
        </div>
      </div>
    
      <div class="row">
        <div class="col-xs-5">
          <table class="table table-unruled">
            .table .table-unruled
            <thead>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
              </tr>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tbody>
            <tfoot>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </tfoot>
          </table>
        </div>
        <div class="col-xs-5 col-xs-offset-1">
          <table class="table table-bordered table-unruled">
            .table .table-bordered .table-unruled
            <thead>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
              </tr>
              <tr>
                <td>a</td>
                <td>b</td>
                <td>c</td>
            </tbody>
            <tfoot>
              <tr>
                <th>a</th>
                <th>b</th>
                <th>c</th>
              </tr>
            </tfoot>
          </table>
        </div>
      </div>
    
    </div>

    0 讨论(0)
  • 2020-12-12 12:20

    In my CSS:

    .borderless tr td {
        border: none !important;
        padding: 0px !important;
    }
    

    In my directive:

    <table class='table borderless'>
        <tr class='borderless' ....>
    

    I didn't put the 'borderless' for the td element.

    Tested and it worked! All the borders and paddings are completely stripped off.

    0 讨论(0)
  • 2020-12-12 12:22

    Using Bootstrap 3.2.0 I had problem with Brett Henderson solution (borders were always there), so I improved it:

    HTML

    <table class="table table-borderless">
    

    CSS

    .table-borderless > tbody > tr > td,
    .table-borderless > tbody > tr > th,
    .table-borderless > tfoot > tr > td,
    .table-borderless > tfoot > tr > th,
    .table-borderless > thead > tr > td,
    .table-borderless > thead > tr > th {
        border: none;
    }
    
    0 讨论(0)
  • 2020-12-12 12:23

    The border styling is set on the td elements.

    html:

    <table class='table borderless'>
    

    css:

    .borderless td, .borderless th {
        border: none;
    }
    

    Update: Since Bootstrap 4.1 you can use .table-borderless to remove the border.

    https://getbootstrap.com/docs/4.1/content/tables/#borderless-table

    0 讨论(0)
提交回复
热议问题