In article <Mydx9.3409$[EMAIL PROTECTED]>, alias wrote: > > > Christian Biesinger wrote: >> Ian Hickson wrote: >> >>> First of all you are using XML syntax (<foo/>) in an HTML >>> document >> >> >> Well, if he would wrap the input in an paragraph as suggested, it should >> validate, right? >> >> (though the per-spec display would not be what he probably expects) >> > > I wrapped it in a <div>, everythings cool, thanks.
You don't actually want to do that: remove the <div> and drop the / from inside the tag. (Technically, the <div><input/></div> in HTML is equivalent to <div><input>></div>, with a ">" as text. So while it validates, the document doesn't actually say what you think it does to the validator.) -- Chris Hoess
