mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
590 B
HTML
24 lines
590 B
HTML
|
<html lang="en-US">
|
||
|
<head>
|
||
|
<title>Vertical alignment and table height</title>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||
|
<meta http-equiv="Content-Style-Type" content="text/css">
|
||
|
<link rel="copyright" href="/~dbaron/legal.html">
|
||
|
<style type="text/css">
|
||
|
|
||
|
td.baselinef { vertical-align: -12px; } /* probably correct */
|
||
|
td.baselineg { vertical-align: 40%; } /* probably correct */
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<table>
|
||
|
<tr>
|
||
|
<td class="baselinef">Data</td>
|
||
|
<td class="baselineg">Data</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
</body></html>
|