html - Disable @media print in bootstrap? -


is possible entirely disable preconfigured @media print css styles bootstrap without having recompile it?

the print styles applied default seen here: https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap.css#l6837

i want webpage printed seen, css tags applied. colors, like:

b {   color: #ff0000; } 

in order disable print styles bootstrap, i'd have explicit override every property again custom styles, eg:

b {   color: #ff0000 !important; } 

but isn't there global way disable these default print styles?

you can download custom bootstrap without media print. http://getbootstrap.com/customize/

just uncheck

print media styles


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -