Guys,
College assignment is to emulate an existing spreadsheet: In this spreadsheet the text runs vertically, as if it had been turned 90 degrees in the cell. http://www.carder.net.au/test/spreadsheet.xls To emulate this we used: .vert { width: 10px; writing-mode: tb-rl; } On the TDs: for (i=0; i<itemArray.length; i++) { document.write("<td class='vert'>" + itemArray[i] + "</td>"); } However this only works in IE. Does anyone know how to do this so it works in MOST browsers? Many thanks Craig Rippon Brisbane, Australia ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
