НЕ получается выровнять списки. пришлось вводить дополнительный селектор чтобы убрать верхний отступ первого элемента списка, тогда получилось 100%
li:first-of-type {
margin-top:0;
}
и ещё … пытался просто не присваивать его (первый элемент списка ), присвоив вот такой селектор
li:not(:first-of-type) {
position: relative;
margin: 10px 0;
}
////============Вот мои селекторы==========///
html,
body {
width: 550px;
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
color: #333333;
background-color: #f5f5f5;
}
main {
position: relative;
display: block;
width: 500px;
height: 300px;
margin: 0 auto;
}
h1 {
margin: 0;
margin-bottom: 10px;
padding: 10px 0;
}
.pie-container {
position: relative;
float: left;
width: 150px;
height: 150px;
border-radius: 50%;
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}
.pie-container::before {
content: “”;
position: absolute;
top: 25%;
left: 25%;
z-index: 50;
width: 50%;
height: 50%;
color: white;
background-color: #f5f5f5;
border-radius: 50%;
box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.8);
}
.pie {
position: absolute;
width: 100%;
height: 100%;
background-color: #aaaaaa;
border-radius: 50%;
clip: rect(0px, 75px, 150px, 0px);
}
[id=“safari”] {
z-index: 10;
background-color: #aaaaaa;
transform: rotate(-20deg);
}
[id=“ie”] {
z-index: 20;
background-color: #0074d9;
transform: rotate(160deg);
}
[id=“firefox”] {
z-index: 30;
background-color: #ff851b;
transform: rotate(20deg);
}
[id=“chrome”] {
z-index: 40;
background-color: #2ecc40;
transform: rotate(100deg);
}
ul {
float: left;
margin-left: 50px;
}
ul {
list-style: none;
}
/Этот пытался прописать как li:not(:first-of-type) - но не работает/
li {
position: relative;
margin: 10px 0;
}
/*Вот этот добавил */
li:first-of-type {
margin-top:0;
}
.stats li::before {
content: “”;
position: absolute;
top: 2px;
left: -25px;
width: 15px;
height: 15px;
background-color: #aaaaaa;
}
.stats li:nth-of-type(1)::before {
background-color: #2ecc40;
}
.stats li:nth-of-type(2)::before {
background-color: #ff851b;
}
.stats li:nth-of-type(3)::before {
background-color: #0074d9;
}