Setting font size of table in @media print
The code for my table begins:
<table class="table table-bordered table-sm">
<tbody>
<tr>
<td class="summary_left_col">Difficulty</td>
<td class="summary_right_col"><strong>3 </strong>Intermediate</td>
</tr>
The font sizes in my table are fine on the screen, but I need to reduce the size for printing. In the CSS for @217338 print I include:
.summary_left_col {font-size: 9pt;}
.summary_right_col {font-size: 10pt;}
but those statements do not have any affect. I assume that the problem is that the "table-sm" is over-riding.
Can you tell me what I should do to adjust the font size?
Thank you.
Marcus Libkind
