Собственно, кто может объяснить что не так? В верху у меня цвета совпадают. Но при сравнение почему-то считается что не все красные карты покрашены, скрин 2
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
.cards li:not(:first-child) {
margin-left: -20px;
}
ul:after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
li:nth-child(4n-3) {
background-color: #ffcc33 ; /Желтый /
}
li:nth-child(4n-2) {
background-color: #0099ff ;/Синий /
}
li:nth-child(4n-4):not(.heart):not(.three.diamond){
background-color: #ff3300 ;/Красный /
}
ul:nth-child(4) li.heart:not(.ten):not(.five){
background-color: #339933 ;/Зеленый /
}
ul:nth-child(2) li:nth-child(even) {
background-color: #996666 !important;/Коричневый /
}
.cards::after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
Тоже мучалась с красным фоном. Методом научного тыка получтла 100%
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
/* cards position */
.cards li:not(:first-of-type) {
margin-left: -20px;
}
ul:after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
/yellow /
li:nth-child(4n+1) {
background-color: #ffcc33 ;
}
/blue /
li:nth-child(4n+2):not(.five) {
background-color: #0099ff ;
}
/red /
/.cards:nth-of-type(2n) li:nth-child(4n):not(.five.heart) -not fully work /
.cards:nth-child(odd) li:nth-child(4n) {
background-color: #ff3300 ;
}
/green /
.cards:nth-of-type(3) .ace.spade + li
{
background-color: #339933 ;
}
/brown /
ul:first-of-type li:nth-child(2n) {
background-color: #996666 ;
Пришлось двигать до 100%, см. стрелка на 23 px
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
left: 23px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
.cards li {
margin-left: -20px;
}
.cards::before {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
.cards li:nth-child(4n+1) {
background-color: #ffcc33 ;
}
.cards:nth-child(n+2) li:nth-child(4n+2) {
background-color: #0099ff ;
}
.cards:nth-child(2n+1) li:nth-child(4n+4) {
background-color: #ff3300 ;
}
.cards:nth-child(4) li:nth-last-child(3),
.cards:nth-child(4) li:nth-child(8)
{
background-color: #339933 ;
}
.cards:nth-child(2) li:nth-child(2n) {
background-color: #996666 ;
}
Kidze
05.Апрель.2021 17:16:04
4
Просто кусок моего кода для сравнения, если кому интересно)
li:nth-child(4n+1) {
background-color: #ffcc33 ;
}
.cards:not(:first-of-type) li:not(:nth-child(4n)):nth-child(2n) {
background-color: #0099ff ;
}
.cards:not(:nth-of-type(2n+1)) li:nth-child(2n) {
background-color: #ff3300 ;
}
.cards:nth-last-of-type(2) .heart:not(.five) {
background-color: #339933 ;
}
.cards:first-of-type li:nth-child(even) {
background-color: #996666 ;
}
li:not(:first-child) {
margin-left: -20px;
}
ul::after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
li:nth-child(4n+1) {
background-color: #ffcc33 ;
}
ul:not(:first-of-type) li:nth-child(4n+2) {
background-color: #0099ff ;
}
ul:nth-of-type(even) li:nth-child(4n) {
background-color: #ff3300 ;
}
ul:nth-of-type(3) li:nth-child(3n+8) {
background-color: #339933 ;
}
ul:first-of-type li:nth-child(2n) {
background-color: #996666 ;
}
Добрый день. Чтоб не дописывать свойство со сдвигом влево 23px, нужно было написать не
.cards li {
margin-left: -20px;
}
,а li:not(:first-child) {
margin-left: -20px;
сдвинуть все карты, кроме первой.
Genby
12.Апрель.2021 09:43:17
7
Мой код (100% результат):
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
li:not(:nth-of-type(1)) {
margin-left: -20px;
}
ul::after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
li:nth-of-type(4n+1) {
background-color: #ffcc33 ;
}
li:nth-of-type(4n+2) {
background-color: #0099ff ;
}
ul:nth-of-type(2n) li:nth-of-type(4n) {
background-color: #ff3300 ;
}
ul:nth-of-type(3) li:nth-child(3n+8) {
background-color: #339933 ;
}
ul:nth-of-type(1) li:nth-of-type(2n){
background-color: #996666 ;
}
Мой вариант 100% результат
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}
body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}
.cards {
position: relative;
width: 380px;
text-align: left;
}
.cards li {
width: 37px;
height: 55px;
}
.cards li::before {
font-family: “Courier”, monospace;
}
.cards li:not(:first-child) {
margin-left: -20px;
}
ul:after {
content: “”;
position: absolute;
right: 0;
top: 0;
display: block;
width: 37px;
height: 55px;
border: 1px dashed #33bb33 ;
border-radius: 5px;
}
li:nth-child(4n+1) {
background-color: #ffcc33 ;
}
ul:not(:first-of-type) li:nth-of-type(4n+2) {
background-color: #0099ff ;
}
ul:nth-of-type(2n) li:nth-of-type(4n){
background-color: #ff3300 ;
}
ul:nth-of-type(3n) li:nth-of-type(3n+8){
background-color: #339933 ;
}
ul:first-of-type li:nth-of-type(2n) {
background-color: #996666 ;
}