Guest User

Untitled

a guest
Jan 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.07 KB | None | 0 0
  1. .table {
  2. margin-bottom: 0;
  3. max-width: none;
  4. width: 100%;
  5. }
  6.  
  7. .panel {
  8. padding: 15px;
  9. display: flex;
  10. }
  11.  
  12. .col-1 {
  13. min-width: 200px;
  14. max-width: 220px;
  15. }
  16.  
  17. .col-2 {
  18. width: 100%;
  19. }
  20.  
  21. .scroll-inner {
  22. overflow-y: hidden;
  23. overflow-x: auto;
  24. -webkit-overflow-scrolling: touch;
  25. width: 100%;
  26. }
  27.  
  28. <div class="container">
  29. <h1 class="text-center">Table Overflow-X Scroll</h1>
  30. <div class="panel panel-default">
  31. <div class="col-1">Column 1 Column ColumnColu mnColumnC olumn</div>
  32. <div class="col-2">
  33. <div class="center-block scroll-inner">
  34. <table class="table table-striped">
  35. <thead>
  36. <tr>
  37. <th>#</th>
  38. <th>First Name</th>
  39. <th>Last Name</th>
  40. <th>Username</th>
  41. <th>#</th>
  42. <th>Description</th>
  43. <th>Description 1</th>
  44. <th>Description 2</th>
  45.  
  46. </tr>
  47. </thead>
  48. <tbody>
  49. <tr>
  50. <th scope="row">1</th>
  51. <td>Mark</td>
  52. <td>Otto</td>
  53. <td>@mdo</td>
  54. <th>1</th>
  55. <th>The sentance starts here</th>
  56. <th>The sentance starts here</th>
  57. <th>The sentance starts here</th>
  58. </tr>
  59. <tr>
  60. <th scope="row">2</th>
  61. <td>Jacob</td>
  62. <td>Thornton</td>
  63. <td>@fat</td>
  64. <th>2</th>
  65. <th>The sentance starts here</th>
  66. <th>The sentance starts here</th>
  67. <th>The sentance starts here</th>
  68. </tr>
  69. <tr>
  70. <th scope="row">3</th>
  71. <td>Larry</td>
  72. <td>the Bird</td>
  73. <td>@twitter</td>
  74. <th>3</th>
  75. <th>The sentance starts here</th>
  76. <th>The sentance starts here</th>
  77. <th>The sentance starts here</th>
  78. </tr>
  79. <tr>
  80. <th scope="row">4</th>
  81. <td>David</td>
  82. <td>Bullock</td>
  83. <td>@serkai</td>
  84. <th>4</th>
  85. <th>The sentance starts here</th>
  86. <th>The sentance starts here</th>
  87. <th>The sentance starts here</th>
  88. </tr>
  89. </tbody>
  90. </table>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
Add Comment
Please, Sign In to add comment