Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For anchors that act like buttons (for example, Questions, Tags, Users, etc. at the top of the Stack Overflow 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.

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

share|improve this question
2  
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? – user659576 Mar 14 '11 at 21:18
20  
'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
uihacker.blogspot.com/2011/12/… – Enve Dec 31 '12 at 15:19
Related: stackoverflow.com/questions/16600479/… = how to allow only some of the child elements to be selected – JK. May 17 at 2:36

18 Answers

up vote 1417 down vote
+50

All of the correct variations are:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
share|improve this answer
4  
I have made a function to autodetect CSS prefix ;) b2bweb.fr/molokoloco/js-cssprefix – molokoloco Jan 14 '11 at 12:13
13  
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
13  
'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
14  
Actually -o-user-select isn't implemented in Opera. It implements IE's unselectable attribute instead. – Tim Down Jul 3 '11 at 10:52
10  
For some reason, this alone wasnt working in IE8, I then added <div onselectstart="return false;"> to my main div. – rob Jan 20 '12 at 8:11
show 30 more comments

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 attribute 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.setAttribute("unselectable", "on");
    }
    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.

share|improve this answer
8  
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
27  
@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
15  
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
12  
This should be an accepted answer... – Nathan Sep 24 '11 at 6:35
5  
Instead of using the class="unselectable", just use the attribute selector [unselectable="on"] { … } – Christopher James Calo Jan 26 '12 at 19:39
show 21 more comments

This will disable user selection in Firefox and WebKit:

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

A JavaScript solution for IE is

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

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

::selection { background: transparent; }
::-moz-selection { background: transparent; }
share|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
30  
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
Yes, this works in Chrome as well. – rafleo Oct 1 '12 at 15:18

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;
}
share|improve this answer
4  
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
5  
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

Workaround for WebKit:

/* Disable tap highlighting */
-webkit-tap-highlight-color: rgba(0,0,0,0);

I found it in a CardFlip example.

share|improve this answer

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

This of 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 highlight a certain portion of my website. Several of my friends, after spending many hours reading and writing code will use the highlight 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.

share|improve this answer
4  
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
9  
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
1  
We have a product that delivers exams to end users electronically, and our publishers want to take as many measures as possible to prevent users from easily copying & pasting their content. – Kyle Fox Apr 29 '10 at 21:37
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 2 more comments

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;
    -ms-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 && $.browser.version < 10) || $.browser.opera) $('.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.

share|improve this answer
2  
Use -ms-user-select: none; (for IE10) and your jQuery "if" should be this: if (($.browser.msie && $.browser.version < 10) || $.browser.opera) – mhenry1384 Jan 31 at 3:42
Be careful man !!! To make it selectable in firefox you must use -moz-user-select: Normal; – Nicolas Thery Mar 10 at 16:53
@mhenry1384 jQuery.browser has been deprecated as of version 1.3 and has been removed in version 1.9 - api.jquery.com/jQuery.browser – Wynand Mar 14 at 23:58
@Wynand Good point. But what sort of "feature detection" exists to determine which CSS property to use? – Tom Auger Mar 15 at 13:28
show 2 more comments
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;

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

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

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"));

-webkit-user-select:none;
-moz-user-select:none;

onselectstart="return false;"

::selection { background: transparent; }
::-moz-selection { background: transparent; }

* {
-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;
}

<div class="draggable"></div>

.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; 
 }

if ($.browser.msie) $('.draggable').find(':not(input)').attr('unselectable', 'on');
share|improve this answer

A way to prevent dragging:

-webkit-user-drag: none;
-moz-user-drag: none;
user-drag: none;
share|improve this answer

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.

share|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

If you are using LESS and bootstrap you could write

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

Add this to the first div in which you want to disable the selection for text:

onmousedown='return false;' 
onselectstart='return false;'
share|improve this answer

This is not CSS, but it is worth a mention:

jQuery UI Disable Selection:

$("your.selector").disableSelection();
share|improve this answer

This will be useful if color selection is also not needed.

::-moz-selection { background:none; color:none; }
::selection { background:none; color:none; }

..all other browser fixes. will work in ie9 +

share|improve this answer

don't forget, older versions of firefox require the following:

-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: moz-none; /* moz- prefix required for older version of firefox*/
-ms-user-select: none;
user-select: none;
share|improve this answer
p.hidden:after {
  content: attr(data-txt);
}

And in HTML:

<p class="hidden" data-txt="Some text you don't want to be selected"></p>

It's not the best way, though.

share|improve this answer

protected by Community Apr 25 '12 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.