groups

name language licence
HTML : Groupe d'otption dans un select HTML Other
HTML : HTML 4.01 Strict HTML Other
HTML : HTML 4.01 Transitional HTML Other
HTML : XHTML 1.0 Strict HTML Other
HTML : XHTML 1.0 Transitional HTML Other
HTML : bizarrerie element inline html HTML Other
HTML : meta robot HTML Other
HTML : superposer une image sur du texte (ex : un prix barré) HTML Other

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 >



language: HTML
licence: Other

HTML : Groupe d'otption dans un select

options: view full snippetsend to code collector
	<!-- optgroup permet de créer des groupes d'option dans une liste déroulante -->
	<select>
	  <optgroup label="Papier">
	  <option selected="selected">Saab</option>
	  <option>Mercedes</option>
	  <option>Audi</option>
	  </optgroup>
	  <optgroup label="Vynil">
	  <option>Saab</option>
	  <option>Mercedes</option>
	  <option>Audi</option>
	  <option>Saab</option>
	  <option>Mercedes</option>
	  <option>Audi</option>
	  </optgroup>
	
(Continues...)