The inherit Value

//this example lets the left margin of the <p class="ex1"> element be inherited
// from the parent element (<div>)

div {
  border: 1px solid red;
  margin-left: 100px;
}

p.ex1 {
  margin-left: inherit;
}

The inherit Value — Structure map

Clickable & Draggable!

The inherit Value — Related pages: