Я только начинаю изучать css, и я хочу сделать два div по краям, и div, у которого есть класс, называемый широким. Я хочу центрировать его, поэтому я ставлю его в абсолютное положение и слева: 50%, но это не работает
.container{
background-color:#6699;
width: 900px;
height:600px;
margin:20px auto;
position: relative
}
.tall{
background-color:#993399;
width: 200px;
height:100%;
float: right
}
.wide{
background-color:#6600cc;
width:200px;
height:200px;
position: absolute;
left:50%
}
.tall2{
background-color:#006699;
width:200px;
height:100%;
}
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="float.css">
</head>
<body>
<div class="container">
<div class="tall"></div>
<div class="wide"></div>
<div class="tall2"></div>
</div>
</body>