Feb 23, 2001 #1 MikeT IS-IT--Management Joined Feb 1, 2001 Messages 376 Location US Is there a way to change the font in a table without specifying it for each cell? I tried <table font size="2">, to no avail.
Is there a way to change the font in a table without specifying it for each cell? I tried <table font size="2">, to no avail.
Feb 23, 2001 1 #2 reup Technical User Joined Feb 23, 2001 Messages 1 Location NL put this in the <head>-part of your .html file <style type="test/css"> td { font-size:12; } </style> this way, all your <td>'s will have the 12pts font (or whatever you like ik to be... gr. Ruben Upvote 0 Downvote
put this in the <head>-part of your .html file <style type="test/css"> td { font-size:12; } </style> this way, all your <td>'s will have the 12pts font (or whatever you like ik to be... gr. Ruben