我有一個HTML表單。我想通過使它們變成粗體來表明一些字段是必需的。原則上,這應該進入CSS而不是HTML嗎?你會怎麼做?以粗體顯示必填字段
<form action="doit" id="doit" method="post">
<label>
Name
<input id="name" name="name" type="text" />
</label>
<label>
Phone number
<input id="phone" name="phone" type="text" />
</label>
<label>
Year
<input id="year" name="year" type="text" />
</label>
</form>
完美的非HTML5答案,基於CSS的答案。 +1 – Singular1ty 2013-05-05 01:04:58