I want to use text stroke in <input type="text"/> and I need it to be cross-browser (firefox, google chrome, safari, opera, IE7+).
Is any there any method to do it (CSS 2.1, jQuery...)?
|
show 1 more comment
feedback
|
|
I believe he's speaking about the css property text-stroke ( It would look something like:
or for inline:
The only real drawback of this approach is that the shadow can only be 1px or it starts to look funny, so it's not a perfect replication of | ||||
|
feedback
|
|
I'm not exactly sure what you mean, but I think this is what you want -
| |||
|
feedback
|
|
Due to the vague question, you have many choices:
| |||
|
feedback
|
|
Using jQuery you can do something like this:
This will bind a keypress event to every input type=text. If you want a specific ID, replace $("input[type='text'] with $("#your_id"). In addition, also play with keydown and keyup events to figure out what suits you most. | |||
|
feedback
|
-webkit-text-stroke. Correct me if I'm wrong. – Ben D Feb 9 at 14:59