在 codepen 的 React 组件中包含 bootstrap
Include bootstrap in react component in codepen
如何在 codepen 中将 bootstrap 类 添加到我的 jsx?我试图将 container-fluid
、row
和 col-*
添加到我在 jsx 中的 div,但它们不起作用,有人知道怎么做吗?
安装bootstrap:
npm install bootstrap
然后将以下导入语句添加到index.js文件
import 'bootstrap/dist/css/bootstrap.css';
而不是写 <div class="container-fluid"></div>
你写
<div className="container-fluid"></div>
如何在 codepen 中将 bootstrap 类 添加到我的 jsx?我试图将 container-fluid
、row
和 col-*
添加到我在 jsx 中的 div,但它们不起作用,有人知道怎么做吗?
安装bootstrap:
npm install bootstrap
然后将以下导入语句添加到index.js文件
import 'bootstrap/dist/css/bootstrap.css';
而不是写 <div class="container-fluid"></div>
你写
<div className="container-fluid"></div>