Skip to content

Instantly share code, notes, and snippets.

@bacillo
Last active August 29, 2015 13:56
Show Gist options
  • Save bacillo/8863676 to your computer and use it in GitHub Desktop.
Save bacillo/8863676 to your computer and use it in GitHub Desktop.
Fogli di Stile: esempio 2
<html>
<head>
<style>
table{ border-collapse:collapse; }
td{ border: 1px solid #d4d4d4; padding: 7px 5px; }
.t1{ font-size: 16px; }
.t2{ font-size: 24px; }
.t3{ font-size: 32px; font-weight: bold; }
</style>
</head>
<body>
<table>
<tr>
<td class="t3" >Anguria</td>
<td class="t2" >Arancia</td>
<td class="t1" >Banana</td>
</tr>
<tr>
<td class="t1">Ciliege</td>
<td class="t2">Limone</td>
<td class="t3">Kiwi</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment