Skip to content

Instantly share code, notes, and snippets.

@froop
Created February 29, 2012 23:09
Show Gist options
  • Save froop/1945259 to your computer and use it in GitHub Desktop.
Save froop/1945259 to your computer and use it in GitHub Desktop.
[HTML] tableスペースなし
<html>
<head>
<style type="text/css">
table.nospace {
border-collapse: collapse;
}
table.nospace th, table.nospace td {
padding: 0;
}
</style>
</head>
<body>
<table class="nospace">
<tr>
<th>a</th>
<td>b</td>
</tr>
</table>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>a</th>
<td>b</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment