CSS Bootstrap overrides my own CSS

后端 未结 9 1216
深忆病人
深忆病人 2021-02-07 14:12

I am trying to create a split-button in my website (ASPNET WebForms). So far the only split-button implementation I like is the one from Bootstrap. I am not using any other feat

9条回答
  •  后悔当初
    2021-02-07 14:40

    So simple use less to strip out the BS components you don't need. Compile and minify a bootstrap.min.css file and then import this into your stylesheet using:

    @import url("bootstrap.min.css"); at the top. Then in your HTML simply include your CSS and these will be read after.

提交回复
热议问题