When using bootstrap.min.css, I've encountered an issue where the background color for "th" elements is ignored when printing. Is there a way to ensure that the color is printed correctly? I attempted to add media styles to the page, but this did not resolve the background color issue during printing.
<div class="row">
<div class="col-xs-6">
<table class="table" bordercolor="FFFFFF">
<thead>
<tr >
<th
style="background-color:ec6619;">
<font color="FFFFFF">Label</font></th>
</tr>
</thead>
</table>
</div>
<div class="col-xs-6" >
<table class="table" bordercolor="FFFFFF">
<thead>
<tr >
<th style="color:000;
font-weight:normal;
font-size: 18px;
font-family:Helvetica, Arial, sans-serif;">
#someotherlabel#
</th>
</tr>
</thead>
</table>
</div>
</div>