JSFiddle - React, Tailwind, and code Playground

by 3rror404

HTML

<div class="container exports">
    <div class="row">
      <form>
        <fieldset>
          <legend class="title">Export to .csv files</legend>
              ...
        </fieldset>
      </form>
    </div>
</div>

<div class="container">
    <div class="row">
      <form>
        <fieldset>
          <legend class="title">Export to .csv files</legend>
              ...
        </fieldset>
      </form>
    </div>
</div>

CSS

legend {
    color: red;
}

.exports legend.title {
    color: green;
}