.icon {
display: block; /*или другой по обстоятельствам*/
width: 30px;
height: 30px;
border-radius: 10px;
background-color: blue; /*цвет фона*/
background-image: url(путь к картинке);
background-position: center;
background-repeat: no-repeat;
background-size: нужный-размер;
}
a:hover span {красный}
.menu-link:hover .icon {меняйте что хотите}
Почему тогда я могу спокойно передвинуть label? И textarea, и label находятся внутри одного элемента и оба являются строчными. В чем тогда разница?
1 4 5 8 9 12 и тд
div:nth-child(4n), div:nth-child(4n+1)
2 3 6 7 10 11 и тд
<header class="header">
<h1>LeoImage</h1>
</header>
body {
margin: 0;
}
.header {
background: linear-gradient(to bottom, transparent 45%, deepskyblue 55%);
}
h1 {
max-width: 500px;
margin: auto;
}