Bootstrap 3 Horizo​​ntal Form/IE8支持

所以我正在使用Bootstrap 3的网站上工作。这个网站需要在IE8中正确渲染(是的,我知道)。我现在正在制作一个水平表单。使用Bootstrap文档提供的代码:Bootstrap 3 Horizo​​ntal Form/IE8支持

<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的工作?

谢谢!

回答:

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

你需要respond.js添加到您的网站IE8来处理媒体查询。 https://github.com/scottjehl/Respond

这里更多:http://getbootstrap.com/getting-started/#browsers

以上是 Bootstrap 3 Horizo​​ntal Form/IE8支持 的全部内容, 来源链接: utcz.com/qa/262239.html

回到顶部