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>Různé styly podtržení</title> <h1>Styly a barvy <code>text-decoration</code></h1> <h2>Vlnovka</h2> <p> <span class="wavy"> Text </span> </p> <h2>Tečkované</h2> <p> <span class="dotted"> Text </span> </p> <h2>Čárkované</h2> <p> <span class="dashed"> Text </span> </p> <h2>Dvojité</h2> <p> <span class="double"> Text </span> </p>
HTML
Autoformát
Standardní režim
Mobilní zobrazení
span { text-decoration: underline; -moz-text-decoration-color: red; -webkit-text-decoration-color: red; text-decoration-color: red; } .wavy { -moz-text-decoration-style: wavy; -webkit-text-decoration-style: wavy; text-decoration-style: wavy; } .dotted { -moz-text-decoration-style: dotted; -webkit-text-decoration-style: dotted; text-decoration-style: dotted; } .dashed { -moz-text-decoration-style: dashed; -webkit-text-decoration-style: dashed; text-decoration-style: dashed; } .double { -moz-text-decoration-style: double; -webkit-text-decoration-style: double; text-decoration-style: double; }
CSS
Autoformát
CSS reset
Až na konci
J
ava
S
cript
Autoformát
jQuery
Umístění JS
window.onload
</head>
</body>