Skip to content

Instantly share code, notes, and snippets.

@bacillo
Created February 7, 2014 14:34
Show Gist options
  • Save bacillo/8863653 to your computer and use it in GitHub Desktop.
Save bacillo/8863653 to your computer and use it in GitHub Desktop.
Fogli di Stile: esempio 1
<html>
<head>
<title>Tabelle</title>
<style>
table{
border-collapse:collapse;
}
td{
border: 1px solid #d4d4d4;
padding: 7px 5px;
}
.verde{
background-color:#00FF00;
}
.arancione{
background-color:#FF6600;
}
.giallo{
background-color:#FFFF00;
}
.rosso{
background-color:#FF0000;
}
</style>
</head>
<body>
<table>
<tr>
<td class="verde" >Anguria</td>
<td class="arancione" >Arancia</td>
<td class="giallo" >Banana</td>
</tr>
<tr>
<td class="rosso">Ciliege</td>
<td class="giallo">Limone</td>
<td class="verde">Kiwi</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment