如何更改HTML表单中输入字段旁边的文本颜色?我正在使用的网站背景较暗,我想将每个输入字段旁边的文本更改为不同的颜色;很可能是白人。我怎么能这样做?
我希望我不会因为这个问题而过于愚蠢。我是HTML和CSS的新手,并没有多少练习。
这是我的HTML。我想要"第一个名字:"和其他类似的文字都是不同的颜色。
<form action="MAILTO:...........com" method="post" enctype="text/plain">
First Name:
<input type="text" name="firstname" placeholder="First">
Last Name:
<input type="text" name="lastname" placeholder="Last"><br><br>
e-Mail:
<input type="email" name="email" placeholder="example@example.com">
Phone Number:
<input type="text" name="phonenumber" placeholder="000-000-0000"><br><br><!--Change this to use the "tel" type when more browsers start supporting it-->
Message:<br>
<textarea name="message" placeholder="What would you like to say?" style="width: 100%; height: 200px;"></textarea><br><br>
<div class="centeredsubmit">
<input type="submit" value="Submit">
</div>
</form>
另外,如何让它实际将表单发送到电子邮件?我用我的电子邮件尝试了上面的内容,但它没有来过。
谢谢你, 马特
答案 0 :(得分:0)
<div style="color:#ffffff;">
您表单旁边的文字。
</div>