Can I use only certain elements of Twitter Bootstrap?

前端 未结 2 1882
我在风中等你
我在风中等你 2021-01-04 01:33

Can I use only some certain elements of bootstrap library? For example, if I import the whole library, my page breaks because of conflicts between my CSS and Bootstrap\'s CS

2条回答
  •  鱼传尺愫
    2021-01-04 02:00

    Well I suggest you take the specific CSS rules out of the bootstrap CSS file and place them in your own CSS file, because it's kind of useless if you include the whole bootstrap CSS file in your website and then just 1 or 2 CSS rules of it.

    You could also try to place the bootstrap CSS file first and then your CSS file after it in the HEAD section of your website. Usually your CSS file will be "more important" and then the specific styles which are applied by bootstrap will be overridden with your own rules.

    
    
    

提交回复
热议问题