JSFiddle - React, Tailwind, and code Playground

by Sampath_Madhuranga

HTML

<div>Without SVG</div>
<div>
  <a></a>
</div>
<div>
  Before SVG <svg height=40 width=20></svg>
</div>

CSS

div {
  height: 100px;
  padding: 0 5px;
  margin: 0 5px;
  
  color: white;
  background-color: blue;
  
  display: inline-flex;
  align-items: center;
}

svg {
  background-color: red;
}

/* body {
  display:flex;
} */