developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

HTML : Nested lists #184

Open developerasun opened 2 years ago

developerasun commented 2 years ago

research : understadning nested lists in HTML5

correct

incorrect

reference

developerasun commented 2 years ago

solution : ol, ul not accepting inside other than li. li accpeting other inside

You can put p tags only inside of li tags, not as direct children of ul. The W3C Recommendation expressly states: lists are made up of sequences of list items defined by the LI element That said, browsers do a lot to try to tolerate invalid markup and structures. But using valid markup and structures is generally the way to go.

reference