EDIT: As @geca noted in the comments, this is a known WebKit bug. Let's hope it gets fixed soon!

The ::selection pseudo-element allows one to style the selected text. This works as expected but not for textareas and inputs in Google Chrome 15. (I'm not sure if it's a webkit or chrome issue since I can't use Safari on Linux.)

Here's a jsfiddle demonstrating this issue: http://jsfiddle.net/J5N7K/2/ The selected text at the pargraph is styled as it should be. The selected text in the textarea and input isn't. (But it is at Firefox.)

Am I doing something wrong or is it just not possible to style it at Chrome right now?

link|improve this question

1  
I'm on Safari 5.1.2 on Mac OS and the selection inside the textarea or input has the default style, not that one declared on the CSS. – MisterJack Dec 9 '11 at 14:13
i tried adding the pseudo-classes directly to the input/textarea with no success either - seems like it's a bug/feature as it also occurs in the current canary build (v17.xxx) - tested on Win7 x64 – Jörn Berkefeld Dec 10 '11 at 12:32
9  
It's a reported bug in WebKit since May 2010. – geca Dec 12 '11 at 14:36
@geca Thanks for the information, I guess that answers my question. Shall I just delete my question since there is no real answer or what do you suggest? – dotweb Dec 12 '11 at 15:49
@dotweb No problem. I suggest editing your question with "EDIT: it's a know bug: link" and upvoting my first comment ofc. ;) – geca Dec 13 '11 at 7:29
feedback

3 Answers

Is a <div> with contenteditable an option? Functions just list a <textarea> for most things.

Demo: http://jsfiddle.net/ThinkingStiff/FcCgA/

HTML:

<textarea>&lt;textarea&gt; Doesn't highlight properly in Chrome.</textarea><br />
<input value="&lt;input&gt; Doesn't highlight properly in Chrome." />
<p>&lt;p&gt; Highlights just fine in Chrome!</p>
<div id="div-textarea" contenteditable>&lt;div contenteditable&gt; Highlights just fine in Chrome!</div>

CSS:

textarea, input, p, div {
    width: 400px;
}

#div-textarea {
    -webkit-appearance: textarea;
    height: 32px;
    overflow: auto;
    resize: both;
}

::selection {
    background-color: black;
    color: white;
}

Output (Chrome):

enter image description here

link|improve this answer
That's pretty smart, nice idea! I probably won't use it, though. I'm using the inputs to send data to a server. It's not worth replacing the inputs with divs and adjust the AJAX stuff just for the simple styles. :) (Except when the site / app doesn't have a backend). I guess I'll have to wait till the WebKit team fixes this issue. – dotweb Dec 16 '11 at 15:05
I just want to ask, how did you make the jsfiddle to link back to the question/ – Truth Dec 17 '11 at 19:10
3  
@Truth Scroll way down in the HTML frame. It's at the bottom. It's a manual process I do each time I create one. – ThinkingStiff Dec 17 '11 at 19:12
1  
I awarded the bounty to you! :) – dotweb Dec 18 '11 at 20:52
@dotweb Thanks. :) – ThinkingStiff Dec 18 '11 at 21:12
feedback

This is a known Webkit bug. Sorry, no solution thus far :)

link|improve this answer
Geca already noted that in the comments a few days ago! – dotweb Dec 18 '11 at 9:59
feedback

Is there any chance that instead of using CSS pseudo-element you can use some jQuery.

take a look at this http://jsfiddle.net/J5N7K/6/.

if you don't understand the jQuery feel free to ask about it.

link|improve this answer
1  
That's not the same as selected text. That's focus selection. Two different things. – BoltClock Dec 12 '11 at 15:09
My bad I looked into a jquery solution to selected text and couldn't really find one. Good luck with finding a solution. – Nick Dec 12 '11 at 15:30
Thanks, for the answer, but that's not what I'm looking for. By the way you can even achieve this without JavaScript, using the :focus CSS pseudo class selector. – dotweb Dec 12 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.