Float or display labels on field focus
We have a requirement to display the field labels on top of the fields on field focus.
I couldn't find any ways to implement this, as the pega input field structure is different from other illustrated methods (bootstrap).
Pega input field structure:
Labels display on focus works for below code:
We have a requirement to display the field labels on top of the fields on field focus.
I couldn't find any ways to implement this, as the pega input field structure is different from other illustrated methods (bootstrap).
Pega input field structure:
Labels display on focus works for below code:
<div class="form-floating-label">
<input type="email" id="email" name="email" required>
<label for="email">Email float up</label>
</div>
Open source link for illustration-->https://foundation.zurb.com/building-blocks/blocks/form-floating-label.html
Any suggestions?