hwdavies
hwdavies

Reputation: 11

Bootstrap3 cols not filling space of row in IE8

My bootstrap columns are not filling the entire width of the row in IE8... The second col-sm-6 comes short on the right hand side. I am using respond and html5shiv already. Any ideas? My code is below.

<header>
  <div class="container-fluid">
    <div class="row">
      <div class="col-xs-9 col-sm-6">
        1
      </div>
      <div class="col-xs-3 col-sm-6">
        2
      </div>
    </div>
  </div>
</header>

Upvotes: 0

Views: 62

Answers (1)

hwdavies
hwdavies

Reputation: 11

Solved: My bootstrap-ie7.css was interfering with my columns. Once I delete this, all started working nicely on IE8.

Upvotes: 1

Related Questions