JSFiddle - React, Tailwind, and code Playground

by pedromendessk

HTML

<div class="contentAbout">
  <h2>About us</h2>
  <p>Hey
  </p>
</div>
<div class="aboutImages">
  <img id="imageOne" src="http://i.imgur.com/6kbSaGL.png" alt="Car" />
</div>

CSS

.contentAbout {
  font-family: sans-serif;
  width: 50%;
  height: 100%;
  padding: 0px 10px 0px 10px;
  margin-top: -10px;
}

.aboutImages {
   
}

#imageOne {
  height: 250px;
  border: 1px outset white;
}