The padding is the innermost part of the box model, creating white space around an element's content and inside of its margins and borders.

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

Perfect! We can set the white space inside of an element's margins and borders individually or with the paddingshorthand property.

How about we add the white space inside of the element's margins and borders?