I have 3 unordered lists that sit side by side, like this:
<ul><li>list 1</li></ul> <ul><li>list 2</li></ul> <ul><li>list 3</li></ul>
Are they considered a list of lists, and therefore be within another ul/li tag, or is their containing Div adequate?
It’s up to you to decide whether they’re a list of lists, or just three distinct lists that happen to be laid out side by side (that’s where CSS comes in).
If they’re not a list of lists, then a containing
divis adequate.