Difference between revisions of "Implict label"
Jump to navigation
Jump to search
(Created page with "<html> <label> First Name <input type="text" /> </label> </html>") |
|||
Line 1: | Line 1: | ||
+ | == Implicit Label which wraps input, no for attribute == | ||
<html> | <html> | ||
<label> | <label> | ||
Line 4: | Line 5: | ||
<input type="text" /> | <input type="text" /> | ||
</label> | </label> | ||
+ | </html> | ||
+ | == Implicit Label outside input, no for attribute == | ||
+ | <html> | ||
+ | <label> | ||
+ | First Name | ||
+ | </label> | ||
+ | <input type="text" /> | ||
</html> | </html> |
Revision as of 17:55, 8 May 2017
Implicit Label which wraps input, no for attribute
Implicit Label outside input, no for attribute