vote up 0 vote down star
1

The building (a museum) has 7 levels (+3 to -3), each divided into different rooms/areas. Hovering over an area will reveal a popup describing that area.

I'm looking for some markup that will accurately represent the 7 levels and their areas. The plan should make sense and be 'navigable' without any CSS/JS.

Edit: Some clarification, the markup only has to represent the 'semantic structure' of the building, not the spatial layout (CSS will add in the layout and graphics).

flag

77% accept rate

3 Answers

vote up 1 vote down

Take a look at microformats, specifically the XOXO Microformat.

link|flag
Thanks. What are the advantages of using XOXO, it wasn't made clear on the wiki page? – htxt Dec 23 '08 at 14:19
vote up 2 vote down

Smells like a nested, unordered list to me.

link|flag
I was thinking definition lists? – htxt Dec 23 '08 at 13:42
How many rooms per floor? – scunliffe Dec 23 '08 at 13:55
It varies, between 2-6 rooms per floor – htxt Dec 23 '08 at 13:58
I don't think definition lists are meant to be nested; semantically they are a flat list of name/value pairs. A nested unordered list is a good fit for this. – Adam Lassek Dec 23 '08 at 14:13
It is true that definition lists shouldn't be nested? – htxt Dec 23 '08 at 14:24
show 1 more comment
vote up 1 vote down

Sounds like a job for SVG? (Sample Adobe Building in San Jose)

I realize that this does use JavaScript, but if you have 7 floors * 10+ rooms? this would get rather hairy with pure CSS. You could use some <ul> elements to make nested levels of rooms, but if the building is this big, I don't think the list (even if rendered as blocks) would be meaningful to view.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.