Nová ukázka
Reset
Načíst z URL
Uložit a získat odkaz
Vztahuje se k…
Nevyplňujte
Napiště „nejsem robot“
▶
Přepnout zobrazení
Výsledek
<title>Zadávání PINu</title> <h1>Zadávání PINu</h1> <form action=""> <h2>Password + <code>pattern</code></h2> <input name="password" type="password" pattern="[0-9]*"> <h2>Password + <code>inputmode</code></h2> <input name="inputmode" type="password" inputmode="numeric"> <h2>Number + <code>text-security: disc</code></h2> <input name="password-number" type="number"> <h2>Tel + <code>text-security: disc</code></h2> <input name="password-tel" type="tel"> <h2>Number + <code>pattern</code> + <code>text-security: disc</code></h2> <input name="password-number" type="number" pattern="[0-9]*"> <h2>Tel + <code>pattern</code> + <code>text-security: disc</code></h2> <input name="password-tel" type="tel" pattern="[0-9]*"> <p> <button>Odeslat</button> </p> </form>
HTML
Autoformát
Standardní režim
Mobilní zobrazení
input[type=number] { -webkit-text-security: disc; }
CSS
Autoformát
CSS reset
Až na konci
J
ava
S
cript
Autoformát
jQuery
Umístění JS
window.onload
</head>
</body>