Problem Statement
Which of the following selects all elements with class 'btn'?
Explanation
The period (.) symbol targets class names. '.btn' selects all elements having the class 'btn'. '#' is used for IDs, and '*' selects all elements.
Code Solution
SolutionRead Only
.btn { color: white; background: blue; }