blob: 2587076c0980f9d8f5ea1271baad45d9d8031f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<html>
<head>
<title>Test that cellpadding, cellspacing, border, etc., don't break table sizing.</title>
<style type="text/css">
html, body { margin: 0 } /* no collapsing */
table, td {
border: none;
margin: 0;
padding: 0;
border-spacing: 0;
}
body > table { margin: 28px 29px 34px 35px; }
body { background: white; color: black; }
div { background: olive; color: black; }
</style>
</head>
<body>
<table width="1"><tr><td>
<table><tr><td>
<div>This is some text.</div>
</td></tr></table>
</td></tr></table>
</body>
</html>
|