Испытание: псевдоэлементы [19/20]

Там все просто, но я не понимаю, почему мне приходиться ставить 42% в .ace-heart и .two-spade, хотя в задании сказано, что все кратно 5. Вроде все сделано верно и 100% принимает.

html, body {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    line-height: 30px;
}

body {
    min-width: 550px;
    min-height: 290px;
    padding: 10px;
}

.two-cards {
    width: 350px;
    height: 250px;
    padding: 10px;
    text-align: center;
}

.two-cards div {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 180px;
    margin: 0 10px;
    margin-top: 30px;
    vertical-align: middle;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Ширина иконок, не изменяйте */
.two-cards div::before,
.two-cards div::after {
    width: 20px;
    
}

/* Поворот нижней иконки */
.two-cards div::after {
    transform: rotate(180deg);
}

.ace-heart::before {
    content: "A";
    font-size: 25px;
    color:red;
    position: absolute;
    left: 5px;
    top: 5px;
    background-image: url("/assets/course57/heart.svg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 125%;
    padding-bottom: 20px;
    font-weight: bold;
    line-height: 30px;
}
.ace-heart::after {
      content: "A";
    font-size: 25px;
    color:red;
    position: absolute;
    left: 95px;
    top: 125px;
    background-image: url("/assets/course57/heart.svg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 125%;
    padding-bottom: 20px;
    font-weight: bold;
    line-height: 30px;
}

.two-spade::before {
      content: "2";
    font-size: 25px;
    color: black;
    position: absolute;
    left: 5px;
    top: 5px;
    background-image: url("/assets/course57/spade.svg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 125%;
    padding-bottom: 20px;
    font-weight: bold;
    line-height: 30px;
}
.two-spade::after {
    content: "2";
    font-size: 25px;
    color: black;
    position: absolute;
    left: 95px;
    top: 125px;
    background-image: url("/assets/course57/spade.svg");
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 125%;
    padding-bottom: 20px;
    font-weight: bold;
    line-height: 30px;
}

.ace-heart {
    background-image: url("/assets/course57/heart.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 42%
}

.two-spade {
        background-image: url("/assets/course57/spade.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 42%
}

впишите текст сюда; также, отключить форматирование текста можно, начав строку с четырех пробелов

В теории сказано, что размеры изображений заданы в пикселях.

1 лайк

О как. Тогда нормально.