在html

时间:2015-12-17 01:15:55

标签: html

我正在尝试使用

将背景颜色添加到输入框中
 <td bgcolor = "color" >< foo>=</td>

我的代码看起来像这样

 <td bgcolor = "#fa8072">< some text goes here <input size="20"
   name="pname" value="Bob"></td>

但我没有任何颜色。有人可以澄清如何写这个吗?

2 个答案:

答案 0 :(得分:1)

这是因为,如果您只拥有上述代码,则不会有<table>标记与<td>一起使用。相反,使用这个:

<table>
  <tr>
    <td bgcolor = "#fa8072">
      < some text goes here 
      <input size="20" name="pname" value="Bob">
    </td>
  </tr>
</table>

演示:https://jsfiddle.net/cp2xa4dp/3/

答案 1 :(得分:1)

尝试:

<td style="background-color: #fa8072"> some text goes here <input size="20" name="pname" value="Bob"></td>

JSFiddle:https://jsfiddle.net/suomyone/gvaxeu8g/

聚苯乙烯。您还错过了<table><tr>代码。