if I recollect what I did originally, the div should have a specific width to be rendered correctly so here goes ( p.s. the "display: block;" should not be critical ):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>display answers</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style type="text/css"> div.menu { display: block; float: left; width: 100px; } div.container { display: block; height : 15px; overflow : hidden; width 500px; } div.content { display: block; height : 15px; overflow : hidden; width: 500px; } </style> </head> <body> <div class="menu"> <a href="#question1">Question One</a><br /> <a href="#question2">Question Two</a><br /> <a href="#question3">Question Three</a><br /> <a href="#question4">Question Four</a> </div> <div class="container"> empty div/with page background colour/ image <div class="content"> <a name="question1"></a> blah blah </div> <div class="content"> <a name="question2"></a> blah blah blah </div> <div class="content"> <a name="question3"></a> blah blah blah blah </div> <div class="content"> <a name="question4"></a> blah! </div> </div> </body> </html> don't have mozilla 1.5 so can't test and too big a download for dial up on a Friday afternnon.....of course 'overflow' is CSS2 so .......... www.WellingtonLive.co.nz ----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 07, 2003 1:32 PM Subject: [wdvltalk] Re: Visibility and on click : : Very cool! : : It works in IE6, but not in Mozilla 1.5... any ideas on how to get it : working on something besides IE? : : Thanks for sharing : --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.536 / Virus Database: 331 - Release Date: 3/11/03 ____ • The WDVL Discussion List from WDVL.COM • ____ To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] Send Your Posts To: [EMAIL PROTECTED] To set a personal password send an email to [EMAIL PROTECTED] with the words: "set WDVLTALK pw=yourpassword" in the body of the email. To change subscription settings to the wdvltalk digest version: http://wdvl.internet.com/WDVL/Forum/#sub ________________ http://www.wdvl.com _______________________ You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
