valign in table cells??

R

Robin

If I want a 3 column newspaper type page; how does valign=top goe into
each column?
 
S

Stefan B Rusynko

Right click each cell and select cell properties

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| If I want a 3 column newspaper type page; how does valign=top goe into
| each column?
 
M

Murray

Or use CSS. It's much cleaner -

table.special td { vertical-align:top; }

which will automatically align every cell in <table class="special">.
 
R

Robin

How do I code the css?

<style>
table.special td { vertical-align:top; }
</style>

Put inside <head> </head>
 
R

Robin

This is an excellent method...................Thanks a lot.
I've been fighting with bad code over text alignment for weeks.
 

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

Top