749 B
749 B
title, tags
| title | tags |
|---|---|
| Lobotomized Owl Selector | layout,beginner |
Sets an automatically inherited margin for all elements that follow other elements in the document.
<div>
<div>Parent 01</div>
<div>Parent 02
<div>Child 01</div>
<div>Child 02</div>
</div>
<div>Parent 03</div>
</div>
* + * {
margin-top: 1.5em;
}
Explanation
- In this example, all elements in the flow of the document that follow other elements will receive
margin-top: 1.5em. - This example assumes that the paragraphs'
font-sizeis 1em and itsline-heightis 1.5. Note: You can read this article for a more detailed explanation.