How to give table width and height in millimeters in HTML

html

Solution

Yes, you can set widths in millimetres. However, setting a width on a `<tr>` element usually doesn't do anything. Instead, consider adding this style to the table: `width:17mm; table-layout:fixed`

Problem

Is there a way to give HTML table width and height in millimeters? ``` <table border="1"> <tr width="17mm"> <td>gukgu</td> <td>gukgu</td> </tr> </table> ``` Is this works?

Original source

Related problems