defining different table styles using CSS

G

Guest

I'd like to have several different table styles defined in my CSS. I've seen
another post which suggested something like:

table.no1 { width:500px; background-image: url(foo1.gif); }
table.no2 {width:400px; background-image: url(foo2.gif); }
table.no3 (width:300px; background-image: url(foo3.gif); }

But how do I actually apply this? When inserting a table, I thought I'd be
able to select one of these from the styles, but it doesn't seem to work.

Any suggestions?
Thanks!

(FP2002 on Win 2000)
 
M

Murray

By creating those rules, you have implicitly created custom classes
corresponding to -

..no1
..no2, and
..no3

When you place your tables on the page, select the table tag on the tag
selector (I am using FP2003), and edit its Properties. On the ensuing
dialogs, you will be able to style the table, and in the list of available
styles, you will find "no1", "no2", and "no3". Select one of them, and bada
bing, bada boom!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top