Forum Moderators: open
Either way, I need for all of the cells in the table to be set not to wrap, so that each row in the table takes up the same amount of vertical space. Aside from actually putting NOWRAP on each and every TD tag, is there any way, via HTML or maybe even CSS, that I can apply this style to the entire table in one go?
CSS is probably the best way to go here. In one fell swoop you can apply nowrapping to a table:
CSS: table.myTableClass td { white-space: nowrap; }
HTML: <table class="myTableClass">
You can apply this rule to all tables my not using a class:
CSS: * td { white-space: nowrap; }
HTH