blob: a08e55a0c0ccb867a72300ee9513007f4a3b6889 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001<!-- Numeric Textfield with Floating Label -->
2<form action="#">
3 <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
4 <input class="mdl-textfield__input" type="text" pattern="-?[0-9]*(\.[0-9]+)?" id="sample4">
5 <label class="mdl-textfield__label" for="sample4">Number...</label>
6 <span class="mdl-textfield__error">Input is not a number!</span>
7 </div>
8</form>