假设我有这个文本字段
<input type="text" placeholder="I am placeholder">
我知道用css我们可以改变这样的占位符颜色但是有没有办法改变一个单词的颜色。
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: pink;
}
::-moz-placeholder { /* Firefox 19+ */
color: pink;
}
:-ms-input-placeholder { /* IE 10+ */
color: pink;
}
:-moz-placeholder { /* Firefox 18- */
color: pink;
}
此代码会更改完整的占位符颜色,但我只想更改单词placeholder
的颜色而不是完整I am placeholder
答案 0 :(得分:1)
您无法使用标准占位符执行此操作。而是创建一个div
并将您的输入元素和另外一个子元素(比如span/p
元素)放在此div
中并将span/p
置于您的输入元素内并在焦点上隐藏{ {1}}元素。
像这样:link
答案 1 :(得分:1)
您可以查看mix-blend-mode:
label {
display: inline-block;
background: linear-gradient(to right, red 2.2em, blue 2.2em);
border: inset;
/* border here instead input */
font-family: monospace;
/* less surprise about length of text at screen */
}
input {
box-shadow: inset 0 0 0 2em white;
/* covers the background, needed for the blending */
}
input:invalid {
/* color part of text only when placeholder is shown */
mix-blend-mode: screen;
}
/* snippet disclaimer */
.disclaim {
mix-blend-mode: screen;
}
body {
background: white;
}
<label>
<input placeholder="I am placeholder" required />
</label>
<p class="disclaim">not avalaible yet for <span>'your browser',</span> please be patient.</p>
否则您需要使用HTML和文本:
label {
display: inline-block;
}
label>span {
position: absolute;
padding-left: 3px;
}
label>span span {
color: blue
}
input {
position: relative;
background: white;
}
input:invalid {
background: none;
}
<label>
<span>I am <span>placeholder</span></span>
<input type="text" required />
</label>