How can I override Bootstrap CSS styles?

前端 未结 12 1297
囚心锁ツ
囚心锁ツ 2020-11-22 05:35

I need to modify bootstrap.css to fit my website. I feel it\'s better to create a separate custom.css file instead of modifying bootstrap.css

12条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 06:30

    Link your custom.css file as the last entry below the bootstrap.css. Custom.css style definitions will override bootstrap.css

    Html

    
    
    

    Copy all style definitions of legend in custom.css and make changes in it (like margin-bottom:5px; -- This will overrider margin-bottom:20px; )

提交回复
热议问题