Aggiunta css per tabella
This commit is contained in:
parent
5610dfe96b
commit
ef8d678c50
1 changed files with 47 additions and 0 deletions
47
Interfaccia.html
Normal file
47
Interfaccia.html
Normal 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>
|
Reference in a new issue