Skip to content

Challenge Use Clockwise Notation to Specify the Padding of an Element

SaintPeter edited this page · 1 revision
Clone this wiki locally

Instead of specifying an element's padding-top, padding-right, padding-bottom, and padding-left attributes, you can specify them all in one line, like this: padding: 10px 20px 10px 20px;.

These four values work like a clock: top, right, bottom, left, and will produce the exact same result as using the side-specific padding instructions.

.green-box {
  background-color: green;
  padding: 40px 20px 20px 40px
}
Something went wrong with that request. Please try again.