Сообщение от deniscikasov@gmail.com
|
как сделать так, что бы вот 1 и 2 див находились по центру?
|
так?
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style type="text/css">
#containers {
display: flex;
justify-content: space-around;
}
.containers {
background-color: rgb(88, 86, 90);
width: 120px;
height: 120px;
padding: 100px;
color: aliceblue;
position: relative;
}
</style>
</head>
<body>
<div class="nav">
<h1>FLOOPandDROOD</h1>
<a href="htm2.html"> Главная</a>
<a href="" class="active"> Купить</a>
<a href=""> Выбор в слепую</a>
<a href="htm3.html"> Коробки удачи</a>
<a href=""> О нас</a>
<a href="htm.html" class="exit" id="ex">Выйти</a>
</div>
<div id="containers">
<div class="containers">1</div>
<div class="containers">2</div>
</div>
</body>
</html>