JSFiddle - React, Tailwind, and code Playground

by Bryan Braun

HTML

<div class="box">
  <span class="s1">Sign in as</span>
  <span class="s2">[email protected]</span>
  <a href="#" class="a1">Not you?
</a></div>

CSS

.box {
  font: sans-serif;
  margin-top: 50px;
  margin-left: 10px;
  margin-right: 10px;
  background: cyan;
}

.s2 {
  overflow-wrap: break-word;
}