No matter what width I set my table borders to, they never print out. What gives?
Printable View
No matter what width I set my table borders to, they never print out. What gives?
I have just printed this (from firefox) and it prints the borders too:
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Table border test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css" media="screen, print">
<!--
table{
border: 1px solid #000;
margin: 0;
}
table td{
border: 1px solid #000;
}
//-->
</style>
</head>
<body>
<table>
<thead>
<tr>
<td>Borders</td>
<td>Margins</td>
</tr>
</thead>
<tbody>
<tr>
<td>1px</td>
<td>0px</td>
</tr>
</tbody>
</table>
</body>
</html>
Strange... seems like Opera doesn't want to print my borders, but IE will. :mad: