Problem Statement
What is the correct syntax to select an element with ID 'header'?
Explanation
An ID selector uses a hash (#). The rule '#header{}' styles the element with that specific ID. Each ID should be unique within a page.
Code Solution
SolutionRead Only
#header { background-color: #333; }