Bootstrap 4 Dashboard的活动项目未在Firefox

时间:2018-03-13 12:41:04

标签: twitter-bootstrap bootstrap-4 sticky

在以下网址https://getbootstrap.com/docs/4.0/examples/dashboard/中,您可以找到使用最新Bootstrap 4的信息中心模板。

在Chrome中,导航栏项目正确显示,特别是活动的导航栏项目名称为信息中心(由于信誉不足而无法嵌入图片以显示问题),而在Firefox中活动仪表板元素根本不显示!

我在项目中使用模板,无法找出导致此问题的原因。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

问题在于Firefox缺少对侧边栏中使用的position: sticky的支持。作为解决方法,您可以在侧边栏上使用position: absolute ...

.sidebar-sticky {
    position: absolute;
}

Bootstrap 4 Dashboard Demo