Bootstrap overriding from external css

btn class is not overriding while trying to override from external css file
but it works when applying to internal css

You are probably applying my code BEFORE the actual bootstrap CSS is called. Move your external CSS file to the end of </head> and you should see it work. It’s a simple issue of CSS Specificity

thanks… for this answer…