On Sat, Oct 11, 2008 at 9:14 AM, Thibaut Barrère <[EMAIL PROTECTED]> wrote: > > Hi, > > is there a built-in way to create horizontal tabs from a ul/li list > like: > > <ul> > <li>First tab</li> > <li>Second tab</li> > </ul> > > where the li would span 4 columns each, for instance ? > > Or should I do it "manually" the css way ?
You have a couple options. There's the tab plugin: http://blueprintcss.org/tabs.html Which mostly works well, and then if you just want them to span columns, you could do: <ul class="container"> <li class="column span-4">First</li> <li class="column span-4">Second</li> ... </ul> And then, in your CSS, just do: li.column { list-style-type:none; } See what works for you :) -- -- Christian Montoya christianmontoya.net --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Blueprint CSS" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/blueprintcss?hl=en -~----------~----~----~----~------~----~------~--~---
