How to change the default background color white to something else in twitter bootstrap

后端 未结 9 2136
再見小時候
再見小時候 2021-01-31 15:47

I am building a web application where I have set my default color to navy blue using css. But when i added the twitter bootstrap css\'s in my page I did not find my navy blue co

9条回答
  •  不要未来只要你来
    2021-01-31 16:46

    Its not recommended to overwrite bootstrap file, just in your local style.css use

    body{background: your color !important;

    here !important declaration overwrite bootstrap value.

提交回复
热议问题