twitter-bootstraphtml-tableborderbootswatch

Why isn't the border working in this Bootstrap 3 table?


With the base Bootstrap 3 CSS it seems to work fine, but with the Superhero Bootswatch theme it seems that border just doesn't want to appear. Any idea why?

http://jsfiddle.net/VxR7z/

<table class="table table-bordered">
  ...
</table>

Should work on all themes.


Solution

  • Just add this code with your desired color at border

    .table-bordered th, .table-bordered td { border: 1px solid #ddd!important }

    Thanks