padding

PHOTO EMBED

Fri Dec 23 2022 10:53:00 GMT+0000 (Coordinated Universal Time)

Saved by @dsouzanathan #c#

p.content-header {
  border: 3px solid fuchsia;
  padding-bottom: 10px;
}
p.content-header {
  padding: 6px 11px 4px 9px;
}
//In the example above, the four values 6px 11px 4px 9px correspond to the amount of padding on each side, in a clockwise rotation. In order, it specifies the padding-top value (6px), the padding-right value (11px), the padding-bottom value (4px), and the padding-left value (9px) of the content.
p {
  border: 1px solid aquamarine;
  margin: 20px;
}
content_copyCOPY