我正在构建一个Web应用程序,其中我已经使用css将我的默认颜色设置为深蓝色.但是当我在页面中添加了twitter bootstrap css时,我没有找到我的海军蓝色,而是发现了twitter bootstrap提供的白色背景颜色.
解决方法
您可以通过添加自己的规则来覆盖Bootstraps的默认CSS.
<style type="text/css"> body { background: navy !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */ </style>