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?