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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS question about text-weight in a table

Status
Not open for further replies.

skills

Programmer
Jun 24, 2003
60
US
I have a table as such:
Code:
<TABLE CELLSPACING=&quot;5&quot; CELLPADDING=&quot;5&quot;>
  <TR>
    <TD>
      XXXXXXXXX
    </TD>             
    <TD>
      <A HREF=&quot;...&quot; id=&quot;...&quot; target=&quot;_top&quot;>...</A>
    </TD>
  </TR>
  <TR>
    <TD>
      XXXXXXXXX
    </TD>
    <TD>
      <A HREF=&quot;...&quot; id=&quot;...&quot; target=&quot;_top&quot;>...</A>    </TD>
  </TR>
...
[code]

How do I make the XXXXXXXXXX bold.  It is just standard text, but I do not know which code it is (H1, P, etc.).  I can not just put a <b> in front of it becauase I have 2000 of them.

Thanks,

Skills
 
a quick way to do 2000 of them is to use a stylesheet. Do something like:

td { font=weight: bolder; }

MrBelfry
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top