Define the appearance of cell in a CSS file

J

Jeff

Hi all,
I have a question about define the appearance of table in a CSS file. What prefix should I enter to indicate that the definition that follows applies on a cell? (The tag <TR>)

PS: Prefix ... I mean a character or two that is located before its id. If I want to define a hyperlink, for example, I'll have to type 'a' then the id.

Thanks
 
S

Stefan B Rusynko

Table cells are either TD or TH
- TR is a table row

td { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
}

th {
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 14px;
font-weight: normal;
}




| Hi all,
| I have a question about define the appearance of table in a CSS file. What prefix should I enter to indicate that the definition
that follows applies on a cell? (The tag <TR>)
|
| PS: Prefix ... I mean a character or two that is located before its id. If I want to define a hyperlink, for example, I'll have to
type 'a' then the id.
|
| Thanks
 
Top