HTML/CSS issue on table....?

  • Thread starter Thread starter camel2575
  • Start date Start date
C

camel2575

Guest
I would like to make all text on this table one color without having to repeatedly copy/paste the following...

<font color="white">; here's how it looks so far..

<th align="center"><font color="white">Date </th>
<th align="center"><font color="white">Game </th>
<th align="center"><font color="white">Line </th>
<th align="center"><font color="white">My Pick </th>
<th><font color="white"> Record </th>
<th><font color="white">W/L </th>
<th><font color="white">Pts </th>
<th><font color="white">Score </th>
<th><font color="white">$</th>

NOTE: This is part of a page that consists of css text..is there a way this can be all integrated??
 
Remove all that <font color> and add in your css.

.color_white {
color: #fff;
}

And then in your HTML page.

<div class="color_white">YOUR TABLE GOES HERE</div>

You can also just add in your css..

html {
color: #fff;
}

To make the font color white in all your website pages.
 
Back
Top