Селекторы, часть 2 / Испытание: первая раскладка [9/20]

как-то так, ну посмотрел форум и понял что можно было намного проще все сделать)
html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

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

.cards {
width: 500px;
}

.cards li::before {
font-family: “Courier”, monospace;
}

.cards li:not(:nth-of-type(4)):not(:first-of-type) {
margin-left: -15px;
}

.cards li:not(:nth-of-type(4)) {
width: 36px;
height: 54px;
}

li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

ul:nth-of-type(1) li:nth-last-of-type(1),
ul:nth-of-type(2) li:nth-of-type(3),
ul:nth-of-type(2) li:nth-of-type(5),
ul:nth-of-type(3) li:first-of-type,
ul:nth-of-type(3) li:nth-of-type(7) {
background-color: #0099ff;
}

ul li:nth-of-type(2):not(.club) {
background-color: #ff3300;
}

ul:last-of-type li:nth-of-type(3n+3) {
background-color: #339933;
}

ну здесь не намного проще, даже могу сказать много лишнего кода :slight_smile:

`li:nth-child(n+3) {
margin-left: -15px;
}

li:not(:nth-of-type(4)) {
width: 36px;
height: 54px;
}

li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

.diamond:not(:nth-of-type(even)) {
background-color: #0099ff;
}

.seven:not(.club){
background-color: #ff3300;
}

ul:last-of-type li:nth-of-type(3n) {
background-color: #339933;
}`

1 лайк

Ну я всмысле что можно было проще чем у меня

Я делал чуть по другому , что-то не пойму как это работает , я читаю это как сделать отрицательный отступ каждому элементу li начиная с 3-го , или нет ?

Всё понял, этот псевдокласс выбирает любой элемент по номеру, а у нас там див, первая карта не нужна, начинаем с третьей

Еще можно просто задать отрицательный отступ всем кроме первого столбца
li:not(:nth-of-type(1)) {
margin-left: -15px;
}

2 лайка

Вот таким образом у меня получилось 100%

html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

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

.cards {
width: 500px;
}

.cards li::before {
font-family: “Courier”, monospace;
}

.cards li:not(:first-of-type):not(:nth-of-type(4)) {
margin-left: -15px;
}

.cards li:not(:nth-of-type(4)) {
width: 36px;
height: 54px;
}

ul li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

.diamond:not(.jack):not(.nine):not(.seven):not(.king) {
background-color: #0099ff;
}

.seven:not(.club) {
background-color: #ff3300;
}

ul:last-of-type li:nth-child(3n+1) {
background-color: #339933;
}