首页 > 解决方案 > React-bootstrap 和深色 UI

问题描述

我是 reactjs 的新手。我正在尝试使用普通 CSS 为我的 react webapp 更改背景颜色,但是当我使用 react-bootstrap 时它不会改变。有没有办法通过 react-bootstrap 做到这一点?

我包括了 react-bootstrap

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

在我使用 create-react-app 模板创建的 index.js 文件中。

标签: reactjsbackground-colorreact-bootstrap

解决方案


The deal with third party CSS libraries is that they always create conflicts with our CSS file. To remove this conflict either use !important in your styling (less appreciated) or try unsettling the background colour and re-setting it,

background-color: unset;
background-color: #000;

Do mind the order of these 2 lines


推荐阅读