CSS Class won't "Stick"

R

R. J. Diaz

I have a page in which I call an external stylesheet - works fine, but
for one problem.

I have a table (yeah, I know, but..) and I want the first line in each
Cell to be a larger font than the balance of the cell. My css calls for
TD and .DEFAULT class to be 12px, my .lgfont class font to be 14 px. I
put [td class="lgfont"] "<'s of course) to get the first line in lgfont,
then a [BR] to continue with the second line but I can't get anything
to "stick" with the [class="default"] except a [P] which I don't want
(line skip). [BR class...] doesn't work, [FONT class="default"] works
once (even published correctly!), but when I close and re-open the page
it's gone.

What do I have to do to get this to work using CSS?

Bob Diaz
 
R

Ronx

Try
<td class="default"><span class="lgfont">1st text line</span><br>
more text</td>

Watch for style cascading from default to lgfont

Ron
 
Top