Aggiunta css per tabella

This commit is contained in:
Davide999 2017-05-26 15:09:48 +02:00
parent 5610dfe96b
commit ef8d678c50

47
Interfaccia.html Normal file
View File

@ -0,0 +1,47 @@
<html>
<head>
<title>GoBug</title>
<meta charset="UTF-8">
<style type="text/css">
h1 {
color: white;
text-align: center;
}
body{
background: #009999;
}
table{
border: 1px solid white;
empty-cells: show;
padding: 0px;
width:100%;
height: 80%;
}
td,tr{
background: white;
width: 100px
height: 10px
padding: 0px
}
</style>
</head>
<body>
<h1> Go bug</h1>
<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>