Twitter Bootstrap 3.1.x,box-sizing属性和Revolution Slider的问题

时间:2014-05-20 02:43:41

标签: javascript jquery html css twitter-bootstrap

我正在基于Twitter Bootstrap 3.1.x为PyroCMS构建主题。我在主题中也使用了Revolution Slider。出于某种原因,属性box-sizing: border-box;导致灰色边框如图所示:

enter image description here

几秒钟后边界消失。我应用了这段代码:

.noborderbox *, .noborderbox *:before, .noborderbox *:after {
    box-sizing: content-box;
}

对DIV但这不起作用。我如何在我的网站上解决这个问题?您可以测试here

1 个答案:

答案 0 :(得分:1)

border-box值使最终渲染的框表示声明的宽度,并在框内剪切任何边框和填充。

所以你应该使用box-sizing: border-box;