Witam mam problem z wyśrodkowaniem tabeli w pionie. Mam na myśli całą tabelę, nie elementy wewnątrz kolumn.
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8"/>
<title>JavaScript</title>
<meta name="description" content="Do js"/>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<p class="logo">Elderflower</p>
<div class="container">
<table class="center" >
<tr>
<th scope="row">Treść tabliczki:</th>
<td> nazwa</td>
</tr>
<tr>
<th scope="row">Liczba znaczków:</th>
<td>21</td>
</tr>
<tr>
<th scope="row">Wartość częściowa:</th>
<td>1</td>
</tr>
<tr>
<th scope="row">Koszt wysyłki</th>
<td>3</td>
</tr>
<tr>
<th scope="row">Wartość całkowita:</th>
<td>13</td>
</tr>
</table>
</div>
</body>
<script src="script.js"></script>
</html>
body
{
background-image: url("img/logo.png");
background-repeat: repeat;
}
.logo
{
text-align: center;
font-size:35px;
text-transform: uppercase;
text-decoration: underline;
margin: 4px;
text-shadow: 0 0 10px #777777;
}
.container
{
width: 400px;
height: 200px;
margin: auto auto ;
background-color: white;
box-shadow: 0 0 10px #777777;
text-align: center;
}
.center
{
height: 100px;
display: inline;
vertical-align: middle;
}