ideasworking
Programmer
Hello,
Can someone help me with a CSS question? I would like to print a specific tables borders. Following suggestions from another question I changed my CSS to the following.
<style type="text/css" media="print">
.noprint { display: none; }
.borderprint {border-bottom:1px solid black;
border-top:1px solid black;
border-right:1px solid black;
border-left:1px solid black;}
</style>
Now I have to add class="borderprint" to every cell and there are spaces between the borders.
How do I avoid the whitespace between borders and is there a better way to cause all borders to print rather than adding the class="borderprint" to every <TD>?
Thanks,
Lou
Can someone help me with a CSS question? I would like to print a specific tables borders. Following suggestions from another question I changed my CSS to the following.
<style type="text/css" media="print">
.noprint { display: none; }
.borderprint {border-bottom:1px solid black;
border-top:1px solid black;
border-right:1px solid black;
border-left:1px solid black;}
</style>
Now I have to add class="borderprint" to every cell and there are spaces between the borders.
How do I avoid the whitespace between borders and is there a better way to cause all borders to print rather than adding the class="borderprint" to every <TD>?
Thanks,
Lou