Answer the question
In order to leave comments, you need to log in
Why are media queries not working?
.descriptions__content {
display: flex;
justify-content: space-around;
@media (max-width: 1424px) {
.descriptions__content {
flex-direction: column;
}
}
}
Answer the question
In order to leave comments, you need to log in
If the page width is 0 - 1424px then the rules will be applied. Otherwise no. Your code will become
.descriptions__content {
display: flex;
justify-content: space-around;
}
@media (max-width: 1424px) {
.descriptions__content .descriptions__content {
flex-direction: column;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question