Question:What will be the outcome of given code? div[class^="stronger"] { } { ... }
A It applies the rule only on divs who belong to a class that begins with "stronger".
B It applies the rule only on divs of class "stronger".
C It applies the rule only on divs who belong to a class which end with "stronger".
D It applies the rule only on divs who belong to a class which does not contain "stronger" in its name.
+ AnswerA
+ Report