web-dev-qa-db-fra.com

Comment changer la couleur de la police dans une table html?

Comment changer la couleur de la police dans une table html?

<table>
<tbody>
<tr>
<td>
<select name="test">
<option value="Basic">Basic : $30.00 USD - yearly</option>
<option value="Sustaining">Sustaining : $60.00 USD - yearly</option>
<option value="Supporting">Supporting : $120.00 USD - yearly</option>
</select>
</td>
</tr>
</tbody>
</table>

J'ai essayé

<span style="color: #0000ff;"> 
</span> 

dans plusieurs endroits ... qui ne fonctionne pas.

2
ttom
<table>
<tbody>
<tr>
<td>
<select name="test" style="color: red;">
<option value="Basic">Basic : $30.00 USD - yearly</option>
<option value="Sustaining">Sustaining : $60.00 USD - yearly</option>
<option value="Supporting">Supporting : $120.00 USD - yearly</option>
</select>
</td>
</tr>
</tbody>
</table>
4

Quelque chose comme ça, si vous voulez aller à la vieille école.

<font color="blue">Sustaining : $60.00 USD - yearly</font>

Une approche plus moderne consisterait à utiliser un style CSS:

<td style="color:#0000ff">Sustaining : $60.00 USD - yearly</td>

Il existe bien sûr des moyens encore plus généraux de le faire.

AJOUT DE 6 PERSONNAGES PLUS MAIS VEUILLEZ SUPPRIMER

1
TomServo
table td{
  color:#0000ff;
}

<table>
  <tbody>
    <tr>
    <td>
      <select name="test">
        <option value="Basic">Basic : $30.00 USD - yearly</option>
        <option value="Sustaining">Sustaining : $60.00 USD - yearly</option>
        <option value="Supporting">Supporting : $120.00 USD - yearly</option>
      </select>
    </td>
    </tr>
  </tbody>
</table>
1
tech2017

si vous devez modifier une option spécifique dans le menu de sélectionvous pouvez le faire comme ceci

option[value="Basic"] {
  color:red;
 }

ou vous pouvez tous les changer 

select {
  color:red;
}
0
Yahya Essam

Essaye ça:

 <html>
    <head>
        <style>
            select {
              height: 30px;
              color: #0000ff;
            }
        </style>
    </head>
    <body>
        <table>
            <tbody>
                <tr>
                    <td>
                        <select name="test">
                            <option value="Basic">Basic : $30.00 USD - yearly</option>
                            <option value="Sustaining">Sustaining : $60.00 USD - yearly</option>
                            <option value="Supporting">Supporting : $120.00 USD - yearly</option>
                        </select>
                    </td>
                </tr>
            </tbody>
        </table>
    </body>
</html>
0
Idan Dagan