首页 > 解决方案 > 溢出隐藏在反应带中

问题描述

在 bootstrap 4 文档中,有元素overflow-hiddenoverflow-auto类,但reactstrap如果我尝试这个:

<Col xs={3} className="overflow-hidden">
    <Sidebar/>
</Col>

col不明白overflow: hidden。如何在中使用overflow-{}reactstrap

UPD:似乎该类不存在:

溢出搜索

标签: cssreactjsbootstrap-4reactstrap

解决方案


您可以使用带有 reactstrap 的引导类,如下所示:

安装以下依赖项

npm install --save bootstrap@4.2.1
npm install --save reactstrap

在您喜欢使用 Bootstrap 4 类的组件中添加以下行:

import 'bootstrap/dist/css/bootstrap.css';

推荐阅读