Table and Cell borders

R

Ron Mc

First off I am using FP2000. I would like to create some tables that include
cells with borders. To date I haven't added borders to my cells and tables
because it makes them look like a box. Is there a way to tell FP2000 that you
want the borders to have a radius in the corners instead of the box look?
Thanks,
Ron Mc
 
R

Ron Mc

Murray,
Thanks for the fast reply. I had a feeling that ths couldn't be done due to
the fact that the cells are square.
I looked at your site as an example and will try this method.
Ron Mc
 
M

Murray

The method I used is a little convoluted, however.

At the bottom of the page, I have two div tags, one nested inside the other.
The outer one has the curved image as a backgound image that is set to not
repeat, and is positioned so that its curve aligns with the border around
the outermost container (all using CSS). The inner one is floated right,
and has the same kind of background treatment.

You could accomplish the same (perhaps more easily) with two positioned
<img> tags, e.g.,

<img style="position:absolute; top:450px; left:-2px"...

Note that those offsets are calculated with respect to the closest
positioned parent container....
 
Top