Browse Source

#55: fix the bottom border bug on Chrome.

zhixin 11 years ago
parent
commit
25bdb212b9
2 changed files with 1 additions and 3 deletions
  1. 0 2
      src/bootstrap-table.css
  2. 1 1
      src/bootstrap-table.js

+ 0 - 2
src/bootstrap-table.css

@@ -29,8 +29,6 @@
 
 .fixed-table-container table {
     width: 100%;
-    overflow-x: hidden;
-    overflow-y: auto;
 }
 
 .fixed-table-container thead th {

+ 1 - 1
src/bootstrap-table.js

@@ -960,7 +960,7 @@
         }
 
         if (this.options.height && this.options.showHeader) {
-            this.$container.find('.fixed-table-container').css('padding-bottom', '38px');
+            this.$container.find('.fixed-table-container').css('padding-bottom', '37px');
         }
     };