Html table won't scroll horizontal?

1.8k Views Asked by At

I have table 1 row and divs in td's here on my website: http://www.joe-tsao.com/

pass: 2017New

<div class="container">
 <table>
 <tbody>
  <tr>
  <td><div class="img">...</div></td>
   ....
  <td><div class="img">...</div></td>
  </tr>
  </tbody>
  </table>
</div>

I used overflow-x: scroll on table and nothing happens.

I can't get my content of the table to scroll when mouse is over it. Can someone help me with this?

1

There are 1 best solutions below

0
On BEST ANSWER

I think code will be like that

.container{
  width: 300px;
}
.table-responsive {
 overflow-x: auto;
 min-height: 0.01%;
}
@media (min-width: 768px){
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
}
table {
 border-collapse: collapse;
 border-spacing: 0;
}
table {
 background-color: transparent;
}
.table {
 width: 100%;
 max-width: 100%;
 margin-bottom: 20px;
}
td, th {
 padding: 0;
}
th {
 text-align: left;
}
.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
 padding: 8px 20px;
 line-height: 1.42857;
 vertical-align: top;
 border-top: 1px solid #ddd;
}
.table > thead > tr > th {
 vertical-align: bottom;
 border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
<div class="container">
  <div class="table-responsive">
    <table class="table">
      <thead>
        <tr>
          <th>1</th>
          <th>2</th>
          <th>3</th>
          <th>4</th>
          <th>5</th>
          <th>6</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Cell 1</td>
          <td>Cell 2</td>
          <td>Cell 3</td>
          <td>Cell 4</td>
          <td>Cell 5</td>
          <td>Cell 6</td>
        </tr>
        <tr>
          <td>Cell 1</td>
          <td>Cell 2</td>
          <td>Cell 3</td>
          <td>Cell 4</td>
          <td>Cell 5</td>
          <td>Cell 6</td>
        </tr>
        <tr>
          <td>Cell 1</td>
          <td>Cell 2</td>
          <td>Cell 3</td>
          <td>Cell 4</td>
          <td>Cell 5</td>
          <td>Cell 6</td>
        </tr>
        <tr>
          <td>Cell 1</td>
          <td>Cell 2</td>
          <td>Cell 3</td>
          <td>Cell 4</td>
          <td>Cell 5</td>
          <td>Cell 6</td>
        </tr>
        <tr>
          <td>Cell 1</td>
          <td>Cell 2</td>
          <td>Cell 3</td>
          <td>Cell 4</td>
          <td>Cell 5</td>
          <td>Cell 6</td>
        </tr>
      </tbody>
    </table>
  </div>
</div>