first thanks to you.
I want to achieve such features:(for the <input>
node)
the color of placeholder text is:
#b8b9b9
the color of the text you input is:
#4e5050
the color of the input caret is:
#FF0000
I have already achieved the first two feature 1 and 2,the code is:
input[type='text']::-webkit-input-placeholder{
color: #b8b9b9;
}
input[type='text']:-moz-placeholder{
color: #b8b9b9;
}
input[type='text']::-moz-placeholder{
color: #b8b9b9;
}
input[type='text']:-ms-input-placeholder{
color: #b8b9b9;
}
input[type='text']:focus {
color: #4e5050;
}
But I do not know how to achieve the feature-3.
I have alreay try the function on the Styling text input caret, but this doesn't work for the mobile safari browser. The mobile safari input caret color is already the default color of the iphone:blue