Note: Jump to heading
Use as a container:
.prs-input can also be used as a container to "weld" inputs + non-input elements together when used with the Form Control component structure. Please make sure that if you use this, your container can shrink down below 320px for smaller screens. See example below:
<div class="prs-form-control">
<div class="prs-label">
<label for="contained-input" class="prs-label-text">Example:</label>
</div>
<label class="prs-input">
<span class="prs-label-text">$</span>
<input type="number" id="contained-input" placeholder="123" />
<span class="prs-label-text">.00</span>
</label>
</div>