Skip to content

Instantly share code, notes, and snippets.

@basselin
Created November 26, 2014 16:02
Show Gist options
  • Select an option

  • Save basselin/11a79ae6a476c1264b1c to your computer and use it in GitHub Desktop.

Select an option

Save basselin/11a79ae6a476c1264b1c to your computer and use it in GitHub Desktop.
<table> & border:1px
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>table &amp; border:1px</title>
<style type="text/css">
table {
border-collapse: collapse;
border-spacing: 0px; /* optional */
font: 1em sans-serif;
margin: 0px auto;
}
th, td {
border: 1px solid #ccc;
width: 100px;
}
</style>
</head>
<body>
<table>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
<tr>
<td>11</td>
<td>12</td>
<td>13</td>
</tr>
<tr>
<td>21</td>
<td>22</td>
<td>23</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment