Aug 21, 2001 #1 MikeT IS-IT--Management Joined Feb 1, 2001 Messages 376 Location US I have a table in which all of the cells need to have the same font. There has got to be a better way to do this than putting a font tag in each cell. Any Ideas?
I have a table in which all of the cells need to have the same font. There has got to be a better way to do this than putting a font tag in each cell. Any Ideas?
Aug 21, 2001 #2 aperfectcircle Programmer Joined Apr 3, 2001 Messages 290 Location US Put the following in between the <head> and </head> tags... <style type="text/css"> td { font-family: Arial; font-size: 11pt; } </style> Upvote 0 Downvote
Put the following in between the <head> and </head> tags... <style type="text/css"> td { font-family: Arial; font-size: 11pt; } </style>