Jak wyśrodkować text który jest w divie "nav"?
HTML:
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8"/>
<title>NAZWA</title>
<meta name="description" content="Official page"/>
<meta name="keyword" content="keywords" />
<meta http-quiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<link rel="stylesheet" href="style.css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div class="conteiner">
<div id="logo">LOGO</div>
<div id="nav">
<div class="option">Strona główna</div>
<div class="option">O nas</div>
<div class="option">Oferta</div>
<div class="option">Konktak</div>
<div style="clear:both;"></div>
</div>
</div>
</body>
</html>
CSS:
body
{
background-color:#6a6a6a;
height:100%
}
.conteiner
{
width:1500px;
margin-left:auto;
margin-right:auto;
}
#logo
{
margin:30px;
font-size:2em;
text-align:center;
font-family: 'Alfa Slab One', cursive;
}
#nav
{
text-align:center;
background-color:#444444;
padding:20px;
text-align:center;
}
.option
{
float:left;
margin-left:40px;
}