I would like to style an UL to display all items in a box with rounded corners (see below):

Is it ppossible to use css and only the UL (with no additional divs and tables) as i'm going to use it in a CMS system to style all ul created by the user.
|
|
I would like to style an UL to display all items in a box with rounded corners (see below):
Is it ppossible to use css and only the UL (with no additional divs and tables) as i'm going to use it in a CMS system to style all ul created by the user.
|
||
|
|
|
|
I was able to recreate your image using the following (X)HTML and CSS:
The end result looks like this:
But it only works in Firefox, Chrome, Safari and any browser supporting CSS3. That sadly excludes IE. |
||
|
|
|
|
Here's a pretty good example of rounded corners using CSS3: CSS3 Rounded corners This will only work in Firefox and Safari though. |
||
|
|
|
|
Using only the UL tag, I don't know a pure CSS 2 solution for variable height block (for fixed-height: you have the sliding doors technique). You might want to look at a JS+CSS solution: nifty corners. |
||
|
|
|
|
Have a look at jQuery Corner for a more rounded cornering solution ;-) It does involve JS as well as CSS, but has a lot of out-of-the-box flexibility. |
||
|
|
|
|
If you can tag the last li, you can put the bottom corners on that - My rounded corner list.
If IE6 and 7 are not a concern, you can use |
||
|
|