Border value(s) order

In exercise 4 of Learn CSS: The Box Model click here, it shows this code:

p {
  border: 3px solid coral;
}

Do the values of the border always have to be listed in this order(3px solid coral)?
Or can they be in a random order(solid 3px coral, or coral solid 3px, etc.)?

Given that they are object properties (their keys are a set) the order is of no importance. Try a few combintations, and I’ll gladly yield if this be wrong.

Thank you.
:slight_smile:

1 Like

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