.box-model div {
  padding: 30px;
  position: relative;
}
.box-model div::after {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  opacity: 0.75;
  font-size: 0.5em;
  padding: 0 0.4em;
}
.box-model div.margin {
  background-color: #F9CC9D;
  border: 2px dashed hsla(0, 0%, 0%, 0.75);
}
.box-model div.margin::after {
  content: "margin";
}
.box-model div.border {
  background-color: #FDDC9A;
  border: 2px solid hsla(0, 0%, 0%, 0.75);
}
.box-model div.border::after {
  content: "border";
}
.box-model div.padding {
  background-color: #C2CE89;
  border: 2px dashed hsla(0, 0%, 0%, 0.75);
}
.box-model div.padding::after {
  content: "padding";
}
.box-model div.content {
  padding: 0;
  border: 2px solid hsla(0, 0%, 0%, 0.75);
  background-color: #8CB5C0;
  text-align: left;
}
.box-model div.content::after {
  content: "content";
}

/*# sourceMappingURL=devmountain-html-css-fundamentals.css.map */