css - HTML White Color Font Shows Yellow -
i'm trying edit html page's color fonts in table. i've been asked give reddish background , white font. problem is, when white, shows yellowish on page. don't know i'm doing wrong, i'm not terribly great @ this, have no 1 else.
here's table (only worrying first cell right now)
<table border="3"> <tr> <th><td bgcolor="#b22222;"><font color="#ffffff;" size="+1">queue</font></th> </tr>
the semicolon playing tricks on you. take out.
<font color="#ffffff" size="+1">queue</font>
now utilize css or something. css doesn’t think chuck norris colour.
<h2>queue</h2>
class="lang-css prettyprint-override">h2 { background-color: #b22222; color: white; }
html css
No comments:
Post a Comment