<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
```Its telling me to
“Go ahead and use the universal selector to
put a 1px dashed #3A5FCD border around every
element on the page. See how each element looks
like it’s in its own box on the page? This is part of the HTML/CSS
“box model,” which we’ll cover in the next lesson.”
so i put * {
border: 1px dashed #3A5FCD;
}
but it says “Oops, try again. Make sure that you use the universal selector * to give a border 1px wide.”
what am i doing wrong
<do not remove the three backticks above>