I am using bootstrap.min.css and for some reason the background color for "th" is ignored while printing. Is there a way, i can force the color to be printed. I have tried adding the media style to the page, but that is still not creating the background while 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>