<body>
<div class="nav">
<div class="logo"></div>
<div class="razdelitel"></div>
<div class="social"></div>
<a class="be" href="#"></a>
<a class="insta" href="#"></a>
<a class="vk" href="#"></a>
<div class="contacts"></div>
<a class="mail">asdasdasd</a>
<a class="telegram">asdasdasd</a>
</div>
</body>
body {
font-size: 10px;
font-family: 'Open Sans', sans-serif;
background: #000000;
}
.nav {
width: 1720px;
display: flex;
margin: 80px auto 0 auto;
flex-flow: row nowrap;
}
.logo {
width: 287px;
height: 28px;
background-image: url(../images/logo.png);
background-repeat: no-repeat;
}
.razdelitel {
margin-left:35px;
width: 1px;
height: 28px;
background-color: #5b5b5b;
}
.be {
margin-top: 6px;
margin-left: 35px;
width: 21px;
height: 16px;
background-image: url(../images/be.png);
background-repeat: no-repeat;
}
.be:hover {
transition: 1s;
margin-top: 6px;
margin-left: 35px;
width: 21px;
height: 16px;
background-image: url(../images/behover.png);
background-repeat: no-repeat;
}
.insta {
margin-top: 6px;
margin-left: 15px;
width: 16px;
height: 16px;
background-image: url(../images/insta.png);
background-repeat: no-repeat;
}
.insta:hover {
transition: 1s;
margin-top: 6px;
margin-left: 15px;
width: 16px;
height: 16px;
background-image: url(../images/instahover.png);
background-repeat: no-repeat;
}
.vk {
margin-top: 6px;
margin-left: 15px;
width: 21px;
height: 16px;
background-image: url(../images/vk.png);
background-repeat: no-repeat;
}
.vk:hover {
transition: 1s;
margin-top: 6px;
margin-left: 15px;
width: 21px;
height: 16px;
background-image: url(../images/vkhover.png);
background-repeat: no-repeat;
}
.mail {
margin-top: 6px;
margin-left: 900px;
width: 20px;
height: 16px;
background-image: url(../images/mail.png);
background-repeat: no-repeat;
}
.mail:hover {
transition: 1s;
margin-top: 6px;
margin-left: 900px;
width: 20px;
height: 16px;
background-image: url(../images/mailhover.png);
background-repeat: no-repeat;
}
.telegram {
margin-top: 6px;
margin-left: 150px;
width: 20px;
height: 16px;
background-image: url(../images/telegram.png);
background-repeat: no-repeat;
}
.telegram:hover {
transition: 1s;
margin-top: 6px;
margin-left: 150px;
width: 20px;
height: 16px;
background-image: url(../images/telegramhover.png);
background-repeat: no-repeat;
}
a {
font-weight: 700;
display: inline-block;
padding-top: 2px;
padding-left: 25px;
text-decoration: none;
color: #5b5b5b;
}
a:hover {
transition: 1s;
color: #ff1e4f;
}
Речь идёт о блоке a. Когда я пытаюсь позиционировать его через margin - реакции 0. Почему и как фиксить?
При позиционировании через padding между иконками .be, .insta, .vk меняется расстояние с указанных 15px на 35px. Почему и как фиксить?