1

所以我正在使用 Bootstrap 3 开发一个网站。这个网站需要在 IE8 中正确呈现(是的,我知道)。我现在正在处理水平表格。使用 Bootstrap 文档提供的代码:

<form class="form-horizontal" role="form">
    <div class="form-group">
    <label for="inputEmail1" class="col-lg-2 control-label">Email</label>
    <div class="col-lg-10">
    <input type="email" class="form-control" id="inputEmail1" placeholder="Email">
    </div>
    </div>
<div class="form-group">
<label for="inputPassword1" class="col-lg-2 control-label">Password</label>
<div class="col-lg-10">
  <input type="password" class="form-control" id="inputPassword1" placeholder="Password">
</div>
</div>
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
  <div class="checkbox">
    <label>
      <input type="checkbox"> Remember me
    </label>
  </div>
</div>
</div>
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
  <button type="submit" class="btn btn-default">Sign in</button>
</div>
</div>
</form>

并注意到它在 IE8 中无法正常显示。即使转到文档 URL:

http://getbootstrap.com/css/#forms-horizo​​ntal

在 IE8 中无法正常显示。

在此处输入图像描述

我是否必须以特定格式编写表单才能使它们在 IE8 中工作?

谢谢!

4

1 回答 1

1

看看这里的解释:IE8 issue with Twitter Bootstrap 3

您需要将 respond.js 添加到您的站点,以便 IE8 处理媒体查询。https://github.com/scottjehl/Respond

更多信息:http: //getbootstrap.com/getting-started/#browsers

于 2013-10-17T19:16:30.637 回答