Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

tables and fonts

Status
Not open for further replies.

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?
 
Put the following in between the <head> and </head> tags...
<style type=&quot;text/css&quot;>
td {
font-family: Arial;
font-size: 11pt;
}
</style>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top