JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  <p class="wide">A paragraph</p>
</div>

CSS

div{
  width: 500px;
  border: 3px solid black;
  }

p.wide{
  margin-left: 10px;
  width: auto;
  margin-right: -50px;
  background-color: firebrick;
  }