Announcement
Collapse
No announcement yet.
Page doesn't validate but has what the validator says
Collapse
X
-
Tags: None
-
Well, you can't just go about placing a form control as a direct child of a form element. A block level element is required between the form element and the form controls.liorean <[[email protected]]>
Articles: RegEx evolt wsabstract , Named Arguments
Useful Threads: JavaScript Docs & Refs, FAQ - HTML & CSS Docs, FAQ - XML Doc & Refs
Moz: JavaScript DOM Interfaces MSDN: JScript DHTML KDE: KJS KHTML Opera: Standards
-
Originally posted by liorean
Well, you can't just go about placing a form control as a direct child of a form element. A block level element is required between the form element and the form controls.
I don't understand
, can you explan more.
Comment
-
Illegal:Code:<form> [color=red] <input/> <input/>[/color] </form>
Code:<form> <div> <input/> <input/> </div> </form>
Code:<form> <div> <input/> </div> [color=red] <input/>[/color] </form>
Code:<form> <div> <input/> </div> <div> <input/> </div> </form>
p, [headings], div,[lists], pre, hr, blockquote, address, fieltset, table, form, noscript, [modifications], scriptliorean <[[email protected]]>
Articles: RegEx evolt wsabstract , Named Arguments
Useful Threads: JavaScript Docs & Refs, FAQ - HTML & CSS Docs, FAQ - XML Doc & Refs
Moz: JavaScript DOM Interfaces MSDN: JScript DHTML KDE: KJS KHTML Opera: Standards
Comment
-
Comment