Learn Basic JavaScript by Building a Role Playing Game

Step 28

Using a selector list (selector1, selector2) give both your #controls and #stats elements a border of 1px solid #0a0a23, a #0a0a23 text color, and 5px of padding.

My answer :
#controls,
#stats {
border: 1px solid #0a0a23;
color: #0a0a23;
padding: 5px;
}

Error: You should have a #controls, #stats selector list.
and I can’t understand why it showing this error. I have used selector. How else I can do it?

Hi! Your code passes, try to clean cache, cookies or use another browser

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.