On Sat, Oct 13, 2007 at 11:34:52AM +0100, Greg Thomas wrote:
On 12/10/2007, Chris G cl@isbd.net wrote:
I want to lay a list of items out as follows:-
item1 item2 item3 item4 item5
Wnat's the simplest way of doing this in HTML?
<ul><li>item1 <ul><li>Item2 <ul><li>item3 <ul><li>item4 <ul><li>item5 </ul></ul></ul></ul></ul>
I presume that works because that's a set of nested <ul>, I'd need to set things so they didn't have any marker character and I'd need to reduce the indent but that's not too difficult. Thank you.