Fix padding on tables. This fixes the TOC on wikipedia pages.

Ref: #2554
This commit is contained in:
Glenn Watson 2014-09-19 14:56:33 +10:00
parent b11a110e85
commit fd176d5387
5 changed files with 79 additions and 12 deletions

View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
@font-face {
font-family: 'ahem';
src: url(fonts/ahem/ahem.ttf);
}
body {
margin: 0;
font-family: 'ahem';
font-size: 100px;
line-height: 1;
}
table {
background:green;
padding: 150px;
}
th {
color: yellow;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<th>X</th>
</tr>
</tbody>
</table>
</body>
</html>