Skip to content

Instantly share code, notes, and snippets.

@bacillo
Last active December 26, 2015 08:39
Show Gist options
  • Save bacillo/7124091 to your computer and use it in GitHub Desktop.
Save bacillo/7124091 to your computer and use it in GitHub Desktop.
Esempio Tabella e utilizzo fogli di stile per impostare spessore e colore del bordo
<!DOCTYPE html>
<html>
<head>
<title>Tabelle</title>
<style>
table{
border-collapse:collapse;
}
th,td{
border: 1px solid #d4d4d4;
padding: 7px 5px;
}
</style>
</head>
<body>
<table>
<tr>
<th>colonna 1</th>
<th>colonna 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment