JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<div class="checkbox-wrapper">
    <input id="cb1" type="checkbox" name="foo" value="foo">
    <label for="cb1">
        A long label that might wrap, but we don't want it to
    </label>
</div>

CSS

.checkbox-wrapper {
    white-space: nowrap;
}