Define the appearance of cell in a CSS file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top