mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
20 lines
327 B
HTML
20 lines
327 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test that cellpadding, cellspacing, border, etc., don't break table sizing.</title>
|
|
<style type="text/css">
|
|
|
|
table, td {
|
|
border: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table width="1"><tr><td>This is some text.</td></tr></table>
|
|
</body>
|
|
</html>
|