“Como vincular um rótulo e uma entrada” Respostas de código

Etiqueta de entrada HTML

<!-- By reference -->
<label for="first_name">First Name</label>
<input type="text" id="first_name" name="first_name">

<!-- By wrapping -->
<label>First Name
  <input type="text" name="first_name">
</label>
Xenophobic Xenomorph

Como vincular um rótulo e uma entrada

<!-- Implicit -->
<label>First Name
  <input type="text" name="first_name" />
</label>

<!-- Explicit -->
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="first_name">
<!-- 
Note: the 'for' attribute is mapped to the 'id' and NOT name or type
So if id='BobSponge', then for='BobSponge' 
-->
Code Rabbi

Respostas semelhantes a “Como vincular um rótulo e uma entrada”

Perguntas semelhantes a “Como vincular um rótulo e uma entrada”

Procure respostas de código populares por idioma

Procurar outros idiomas de código