我正在创建一个网站创建者(是的site-ception)所以无论如何我有一个表格,每行包含一个单元格的项目,下一个单元格是输入用于设置项目&#39 ; s值,第三个单元格任何信息。但无论我做什么,仅表中的第一个输入不显示我给它的默认值。这是代码:
<p class='big'>Text</p>
<table>
<tr><td><p>Color</p></td><td><input type="text" value="black" /></td><td class='info'><p>Either word or hexadecimal</p></td></tr>
<tr><td><p>Font-Family</p></td><td><input type="text" value="Verdana" /></td><td class='info'><p>Has case-sensitivity</p></td></tr>
</table>
<p class='big'>Divisions</p>
<table>
<tr><td><p>Background-Color</p></td><td><input type="text" value="white" /></td><td class='info'><p>The color in the back layer</p></td></tr>
<tr><td><p>Border-Color</p></td><td><input type="text" value="black" /></td><td class='info'><p>The color of the bordering line</p></td></tr>
<tr><td><p>Border-Width</p></td><td><input type="text" value="2px" /></td><td class='info'><p>In px or em units</p></td></tr>
</table>
&#13;