For anchors that act like buttons (for example the Question, Tags, User, etc at the top of the SO page) or tabs, is there a CSS standard way to disable the highlighting effect if the user accidentally selects the text?

I realize this could be done with javascript and a little googling yielded the mozilla-only "-moz-user-select" option.

My question is if there is a standard compliant way to accomplish this with CSS, and if not, what is the "best practice" approach?

Thanks!

link|improve this question
can elements within the element witch has highlighting disabled, have highlighting enabled with in css in the style or class attribute? or in other words, are there other values for -webkit-user-select ect. other than just none? – dvb Mar 14 '11 at 21:18
4  
'user-select'- Values: none | text | toggle | element | elements | all | inherit - w3.org/TR/2000/WD-css3-userint-20000216 – Blowsie Mar 21 '11 at 9:44
feedback

14 Answers

No one here and posted an answer with all of the correct CSS variations, so here it is:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
link|improve this answer
1  
I have made a function to autodetect CSS prefix ;) b2bweb.fr/molokoloco/js-cssprefix – molokoloco Jan 14 '11 at 12:13
2  
nice code molokoloco :D , although I personally would stay well away from using it, as sometimes you may need the values different for different browsers, and it relys on JavaScript. Making a class and adding it to your element or applying the css to your type of element in your style-sheet is pretty bullet proof. – Blowsie Jan 14 '11 at 13:07
1  
'user-select'- Values: none | text | toggle | element | elements | all | inherit - w3.org/TR/2000/WD-css3-userint-20000216 – Blowsie Mar 21 '11 at 9:44
3  
Actually -o-user-select isn't implemented in Opera. It implements IE's unselectable attribute instead. – Tim Down Jul 3 '11 at 10:52
9  
the title question title is very well worded to the question so comes up trumps in searches. Additionally I update the answer every time a new rule comes around, so it remains correct – Blowsie Feb 13 at 10:18
show 14 more comments
feedback

In most browsers, this can be achieved using proprietary variations on the proposed-but-now-defunct CSS3 user-select property:

*.unselectable {
   -moz-user-select: -moz-none;
   -khtml-user-select: none;
   -webkit-user-select: none;

   /*
     Introduced in IE 10.
     See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
   -ms-user-select: none;
   user-select: none;
}

For IE < 10 and Opera, you will need to use the unselectable expando property of the element you wish to be unselectable. You can set this using an attribute in HTML:

<div id="foo" unselectable="on" class="unselectable">...</div>

Sadly this property isn't inherited, meaning you have to put an attribute in the start tag of every element inside the <div>. If this is a problem, you could instead use JavaScript to do this recursively for an element's descendants:

function makeUnselectable(node) {
    if (node.nodeType == 1) {
        node.unselectable = true;
    }
    var child = node.firstChild;
    while (child) {
        makeUnselectable(child);
        child = child.nextSibling;
    }
}

makeUnselectable(document.getElementById("foo"));

This still doesn't cover all possibilities. While it is impossible to initiate selections in unselectable elements, in some browsers (IE and Firefox, for example) it's still impossible to prevent selections that start before and end after the unselectable element without making the whole document unselectable.

link|improve this answer
5  
you should remove the * selector from your example, its really in-efficient and there really isnt any need to use it in your example is there? – Blowsie Jan 14 '11 at 13:15
10  
@Blowsie: I don't think so: the CSS 2 spec states that *.foo and .foo are precisely equivalent (in the second case, the universal selector (*) is implied), so barring browser quirks, I can't see that including the * will harm performance. It's a long-standing habit of mine to include the *, which I originally started doing for readability: it explicitly states at a glance that the author intends to match all elements. – Tim Down Jan 14 '11 at 13:24
6  
oooh after some further reading, it seems * is only un-effiecient when using it as the key (the righmost selector) ie .unselectable * . Further info here code.google.com/speed/page-speed/docs/… – Blowsie Jan 14 '11 at 13:49
1  
The unselectable attribute does not seem to be working in IE 9 – beanland Jul 27 '11 at 21:41
3  
This should be an accepted answer... – Nathan Sep 24 '11 at 6:35
show 12 more comments
feedback

This will disable user selection in Firefox and WebKit

-webkit-user-select:none;
-moz-user-select:none;
link|improve this answer
4  
@Sam Soffes - that's because WebKit is the rendering engine used by Chrome and Safari. – Matt Ball Aug 30 '10 at 16:41
2  
I added "cursor:default;" otherwise the cursor changes to the select cursor (at least in FF) – some Oct 6 '10 at 13:52
2  
@Matt Ball +1 captain obvious point :) – Sam Soffes Oct 6 '10 at 15:44
2  
@Sam Soffes: does that point go to me or to you? :P – Matt Ball Oct 6 '10 at 16:09
4  
lots of passive aggressive smileys going on around here : ) – Shawn Jun 16 '11 at 22:24
show 2 more comments
feedback

A JavaScript solution for IE is

onselectstart="return false;"
link|improve this answer
6  
Don’t forget about ondragstart! – Mathias Bynens May 26 '10 at 13:25
feedback

You can do so in Firefox and Safari (Chrome also?)

::selection { background: transparent; }
::-moz-selection { background: transparent; }
link|improve this answer
1  
This combined with the onselectstart = function(){ return false; } for IE gives me exactly what I wanted. Thanks. – Gordon Tucker Jan 6 '10 at 2:03
14  
I wouldn't recommend doing this, because it doesn't actually fix the issue; disabling text selection - it merely hides it. This can lead to bad usability, because if I drag my cursor around the page I could be selecting any arbitrary text without knowing it. This can cause all kinds of weird usability "bugs". – Keithamus Feb 2 '11 at 15:01
feedback

If you want to disable text selection on everything except on <p> elements you can do this in css (watch out for the -moz-none which allows override in sub-elements, which is allowed in other browsers with none):

* {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: -moz-none;
-o-user-select: none;
user-select: none;
}

p {
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-o-user-select: text;
user-select: text;
}
link|improve this answer
2  
Make sure you also make input fields selectable: p, input { -webkit-user-select: text; -khtml-user-select: text; -moz-user-select: text; -o-user-select: text; user-select: text; } – joshuadelange Jul 7 '11 at 22:39
3  
Be very wary about turning off browser UI expectations on ALL code except for one item. What about list items <li /> text, for example? – Jason T Featheringham Nov 12 '11 at 7:13
feedback

Until CSS 3's user-select property becomes available only Gecko based browsers will support the -moz-user-select property you already found.

This off course is not supported in browsers that do not use the Gecko rendering engine.

There is no "standards" compliant quick and easy way to do it, using JavaScript is an option.

The real question is, why do you want users to not be able to highlight and presumably copy and paste certain elements? I have not come across a single time that I wanted to not let users high-light a certain portion of my website. Several of my friends, after spending many hours reading and writing code will use the high-light feature as a way to remember where on the page they were, or providing a marker so that their eyes know where to look next.

The only place I could see this being useful is if you have buttons for forms that should not be copy and pasted if a user copy and pasted the website.

link|improve this answer
3  
The buttons thing would be exactly my motivation. – Kriem May 5 '09 at 20:47
This may be necessary for embedded devices. i.e. a device where a browser is used for rendering the UI. – Tim Kersten Nov 4 '09 at 12:05
Being able to [ctrl-a], [ctrl-c] only the text content portion of a site would be useful imo. – codeinthehole Nov 13 '09 at 16:19
5  
Another reason this is needed is Shift-clicking to select multiple rows in a grid or table. You don't want to to highlight the text, you want it to select the rows. – Gordon Tucker Jan 6 '10 at 16:08
2  
There are also legal issues where someone else's content is being legally republished but a clause in the license requires web publishers to prevent text from being easily copied and pasted. This is what led me to find this question. I don't agree with the requirement but the company I'm contracting for is legally obligated to implement it this way. – Craig M Mar 15 '11 at 20:34
show 1 more comment
feedback

workaround for WebKit. i found it in CardFlip example:

/* Disable tap highlighting */
-webkit-tap-highlight-color: rgba(0,0,0,0);
link|improve this answer
feedback

A way to prevent dragging: -webkit-user-drag: none; -moz-user-drag: none; user-drag: none;

link|improve this answer
feedback

Aside from the Mozilla-only property, no, there is no way to disable text selection with just standard CSS (as of now).

If you notice, Stack Overflow doesn't disable text selection for their navigation buttons, and I would recommend against doing so in most cases, since it modifies normal selection behavior and makes it conflict with a user's expectations.

link|improve this answer
While I agree that it changes behaviour the user expects, it would make sense for things like the "Add Comment" button that is sitting next to this form field ... – X-Istence May 5 '09 at 20:40
But doesn't that expose needless implementation details? An input or button's text can't be selected. – anon May 5 '09 at 20:40
@anon: Most users will probably not try to select the text of your button, so in practice, it shouldn't really matter much. Besides, in order to do so, they will have to start selecting outside of the button—if they click inside the button itself, the onclick handler will activate instead. Plus, certain browsers (e.g. Safari) actually let you select the text of normal buttons… – htw May 5 '09 at 20:49
feedback

I like the hybrid CSS + jQuery solution.

To make all elements inside <div class="draggable"></div> unselectable, use this CSS:

.draggable {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.draggable input { 
    -webkit-user-select: text; 
    -khtml-user-select: text; 
    -moz-user-select: text; 
    -o-user-select: text; 
    user-select: text; 
 }

And then, if you're using jQuery, add this inside a $(document).ready() block:

if ($.browser.msie) $('.draggable').find(':not(input)').attr('unselectable', 'on');

I figure you still want any input elements to be interactable, hence the :not() pseudo-selector. You could use '*' instead if you don't care.

Caveat: IE9 may not need this extra jQuery piece, so you may want to add a version check in there.

link|improve this answer
feedback

Here is my solution. Work on all browsers. http://tehno-team.net/javascript/25

link|improve this answer
feedback

JQuery plugin

link|improve this answer
feedback

If you are using LESS and bootstrap you could write

.user-select(none);
link|improve this answer
feedback

protected by Community Apr 25 at 20:42

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.