我有一个隐藏的输入,其值为Pending。我如何使值挂起红色。我试过了:
<div class="email">
<label for="cemail"></label>
<input type="hidden" style="font-color: red;" name="status" value="Pending" required>
</div>
但它不起作用
答案 0 :(得分:0)
而不是使用font-color:
color : red; // to color text.
background-color : red; // to color input background.
答案 1 :(得分:0)
input[value^="Pending"] {color:red;}
答案 2 :(得分:0)
<div class="email">
<label for="cemail"></label> <input type="text" style="color: red;" name="status" value="Pending" required>
</div>
嗨,隐藏字段在浏览器中不可见,所以我建议首先使用“文本”或其他类型使字段可见,参考此链接HTML Input Type 我已编辑了您的代码,请检查。