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

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -