Created
February 29, 2012 23:09
-
-
Save froop/1945259 to your computer and use it in GitHub Desktop.
[HTML] tableスペースなし
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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