does bootstrap apply special font application rules across elements? -


i added bootstrap.css reference existing site. changed font-family , font-size @ body level roboto google web font. font application looked good.

however, bootstrap reference broke other functionality in site removed bootstrap reference. however, when did this, font application did not good. font style did not applied textbox. when experimented different font sizes textbox, overall not when site had bootstrap.css reference.

based on experience, i'm assuming bootstrap refs have sort of intelligence optimize application of font across site. correct? if can somehow apply functionality of bootstrap without adding full bootstrap reference? or there other specialized 3rd-party libs can add website without additional bootstrap overhead , potential conflicts?

textarea, , inputs don't inherit font , other css properties...so should this:

textarea, input {   font-family: whichever-you-want; } 

hope helps


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -