Print HTML table background color with Bootstrap
There is not. By default they don't print. It's a browser option that can't be overcome by CSS/JS etc.
There IS this, which force colors...allegedly in Chrome
-webkit-print-color-adjust
Which is listed as BUGGY support ONLY for chrome, and not supported in other browsers.
Bootstrap explicitly sets the background to white for printing--this is in their CSS:
@media print {
.table td, .table th {
background-color: #fff !important;
}
}
Write your override like theirs and you should be good to go.