Aug 21, 2001 #1 MikeT IS-IT--Management Feb 1, 2001 376 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 Apr 3, 2001 290 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>