|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
side by side lists with css
I would like to change this table layout I have to to 2 side-by-side UL's with CSS.
<table> <tr> <td width=46%> <ul> <li> some list here </li> </ul> </td> <td width=8%> </td> <td width=46%> <ul> <li> another list here </li> </ul> </td> </tr> </table> Can someone advise me how to arrange these two lists? |
|
#2
|
|||
|
|||
|
Float the Lists left:
Code:
ul {
float: left;
}
|
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Advanced Web Development > side by side lists with css |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|