If we want to shorten the declaration, we can use a special shorthand property.

<html>
 <head>
  <style>p {border: 2px solid #44b3c2;margin: 10px 25px 10px 25px;}</style>
 </head><body><p>I'm the actual content.</p></body></html>
]]>

Great! The margin property uses a clockwise sequence: top, right, bottom, left.

If we don't set bottom and left values, the top and right values will be assigned. Therefore, 10px 25px is the same thing as 10px 25px 10px 25px.

That doesn't look right, does it?