所以我正在使用 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-horizontal
在 IE8 中无法正常显示。
我是否必须以特定格式编写表单才能使它们在 IE8 中工作?
谢谢!