I ran into an issue where two elements share the same class name, specifically "img"
Is it possible to apply different styles to these elements that are nested under different parent classes, despite having the same class name?
I am trying to customize the img elements within the "slide-type-final" and "question-2" classes separately
.slide-type-final>img {
max-height: 40em;
}
.question2>img {
max-height: 40em;
display: inline-table;
}