.question-list .options {
min-width: 240px;
}
Max width property will apply to both( question-list .options ) or not ?
.question-list .options {
min-width: 240px;
}
Max width property will apply to both( question-list .options ) or not ?
2
Answers
max-width property will be applied to an element with class
.options
that is inside an element with class.question-list
min-width property will be applied to an element with class
.options
that is inside an element with class.question-list
In order to target both
.question-list
and.options
you should put comma between them: