我希望文本字段中的文本,例如"您的姓名* "
"你的名字"的颜色应该是黑色,*的颜色应该是红色。
我该怎么做??
请帮助我。
不能;文本输入字段的值是纯文本。
将说明(如果需要)包括必需性指示器放在标签中,而不是放在字段中。您可以对指标使用标记,并为其着色:
<label for=name>Your name<span class=reqd>*</span>:</label>
<input id=name name=name size=40 required>
我认为你应该想要这个
.CSS
label{
color:black;
}
label span {
color:red;
}
input{
line-height:25px;
color:gray;
font-size:16px;
}
input:focus{
color:black;
}
.HTML
<label>
Your Name:- <input type="text" value="your name"><span>*</span>
</label>
现场演示 http://jsfiddle.net/rohitazad/dZmaZ/
一个文本框中不能有不同的颜色。(无论如何,跨浏览器可靠)
对于必填字段,解决此问题的最常见方法是将星号直接放在带有类的元素中的文本框后面,以将文本设置为红色。
示例:http://jsfiddle.net/JzFd4/
这就是我在这里问的问题。
多色占位符。
答案链接在这里
这里有
一些技巧
.input-field {
position: relative;
display: inline-block;
}
.input-field > label {
position: absolute;
left: 0.5em;
top: 50%;
margin-top: -0.5em;
opacity: 0.5;
}
.input-field > input[type=text]:focus + label {
display: none;
}
.input-field > label > span {
letter-spacing: -2px;
}
.first-letter {
color: red;
}
.second-letter {
color: blue;
<div class="input-field">
<input id="input-text-field" type="text"></input>
<label for="input-text-field">
<span class="first-letter">your name</span>
<span class="second-letter">*</span>
</label>
</div>