There's another shorthand property that allows us to set the width, style and color of an HTML element's border.

<html>
 <head>
  <style>.box {border: 2px dotted red;}
  </style>
 </head>
 <body><div class="box">Jack</div></body>
</html>
]]>

Fantastic! How in the world did we survive without shorthand properties like border?

How about we try a type or a class selector?