Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法以毫米为单位给出 HTML 表格的宽度和高度?
<table border="1"> <tr width="17mm"> <td>gukgu</td> <td>gukgu</td> </tr> </table>
这行得通吗?
是的,您可以以毫米为单位设置宽度。但是,在元素上设置宽度<tr>通常不会做任何事情。相反,请考虑将此样式添加到表中:width:17mm; table-layout:fixed
<tr>
width:17mm; table-layout:fixed
您可以使用css,但仅建议用于打印。要在屏幕上显示,请em使用px或%。
css
em
px
%
<table border="1"> <tr> <td style="width: 17mm;">gukgu</td> <td style="width: 17mm;">gukgu</td> </tr> </table>
见手册
查看演示