Hi!
i have to lists, and i want them to be side by side..
it should look something like that:
point1.......point2
...blalba....bliblibli
...blalba....bliblibli
...blalba....bliblibli
Tables are a solution of course, but i want to know if there's away to do it with CSS.
Thank ya very much,
greets
Ben
2 lists side by side
You can float your <ul>'s.
In your CSS use something like:
ul#left
{
float: left;
/* rest of ul CSS here */
}
You can either float the other list to the left or right, or not at all (becasue the first will float). Have a go at experimenting and let us know.
2 lists side by side
Thx a lot!
i floated both UL's to the left - that was it !
2 lists side by side
benny,
Are those two lists related to one another? If so, thats the appropiate place to use a table - for tabular data. If not, ignore this :?