3 Quick Questions About CSS Popups

liunx

Guest
I've created some code that uses CSS to have rollovers & popups by using list properties. You can see the page at <!-- m --><a class="postlink" href="http://www.douglas-county.com/Test_Folder/test.asp">http://www.douglas-county.com/Test_Folder/test.asp</a><!-- m -->

My questions are:
1) How can I make this list horizontal?
2) Will this work in all browsers?
2) With the new version of CSS3 coming out soon, will it support CSS menus in a better & easier way?

That's it. Thanks for any help.

KWilliams1. li { display: inline; }
You already had the correct answer, but because it was in #popup which has a display:block; it didn't work.
BTW #popup should be a class. An "id" is unique.
2. Yes, with the exception of really old browsers
3. No browser supports css3 (some in Opera7), which still has to be finalised.
Any practical use of css3 is probably 2-3 years from now.Fang,

Thanks for the quick response. About CSS3, do you think that they are going to make CSS rollovers w/submenus part of the new version? If you're not sure, do you know where I can find out? I emailed a contact from W3.org, but I didn't receive a response. Thanks Fang.

KWilliamsCSS3 roadmap (<!-- m --><a class="postlink" href="http://www.w3.org/TR/css3-roadmap/">http://www.w3.org/TR/css3-roadmap/</a><!-- m -->)Great, thanks.
 
Back
Top