JSFiddle - React, Tailwind, and code Playground

by Chad Drummond

HTML

<div class="container">
  <header>
    <h1>Hello World!</h1>
  </header>
  <section>
    <p>Hi! My name is Chad!</p>
  </section>
  <header>
    <h1>Hello World!</h1>
  </header>
  <footer>
    &copy; Copyright.
  </footer>
  <p>I'm a direct child of div!</p>
</div>

<p>Yo! my name is Bob!</p>

<div class="container item">
  <h1>Hey dude!</h1>
</div>

CSS

h1 {
  color: red;
  background-color: blue;
}

div > p {
  color: blue;
}

.container {
  background-color: tomato;
  padding: 1em;
}

section + header, section + header h1 {
  background-color: yellow;
}