Я сделал чтобы когда ширина экрана была максимально 1999px то #content .hall-8 li:nth-of-type(-n+10) .item:nth-of-type(1) его значение становилось margin-right: 100px, но почему то меняется на всех разрешениях экрана margin-right: 100px, а мне нужно чтобы только когда экран был максимально 1999px, не знаете как исправить?
@media only screen and (max-width:1999px) { #content .hall-8 li:nth-of-type(-n+10) .item:nth-of-type(1){
margin-right: 100px;
}
}
#content .hall-8 li:nth-of-type(-n+10) .item:nth-of-type(1) {
margin-right: 190px; }