• Facebook
  • Linkedin
Profile
Nahid

Nahid Hossain

Web Application & Software Developer

  • Blog
  • Science & Technology
  • Coding & Scripting

2015.05.29

Coding & Scripting 0

Prevent Selecting Text using CSS

To prevent/disable html text selection , you can use the following css :

  body {
 -webkit-touch-callout: none;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
 user-select: none;
 }


For example:

<!-- By Nahid Hossain | <a href="http://www.akmnahid.com">www.akmnahid.com</a> -->
<! Doctype html>
<html>
    <head>
        <style type = "text / css">
             * .unselectable {
                 -moz-user-select: -moz-none;
                 -khtml-user-select: none;
                 -webkit-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }
         </style>
    </head>
    <body>
        <div class = "unselectable">
             <p> This is unselectable text </p>
         </div>
    </body>
</html>
By Nahid Hossain
Tags:
  • css
  • tutorial
  • tricks
Share this Story:
  • Twitter
  • Facebook
  • Google+

Comments(0)

Leave a comment

Comment

Categories

  • Science & Technology
    • Computer Networks
    • Coding & Scripting
      • HTML5
    • Information Technology
      • Internet
    • Invention
    • Mobile Phone
  • Countries
    • Bangladesh
  • Review
  • Entertainment
  • International
  • Miscellaneous

Recent Posts

  • An introduction to SVG format: its benefits and uses

    1. March 15, 2016
    2. Coding & Scripting
  • Lesson 1 - Text in SVG

    1. March 23, 2016
    2. Coding & Scripting
  • Lesson 2: Drawing shapes in SVG

    1. March 28, 2016
    2. Coding & Scripting

Recent Comments

  • Atiq: SCB's interest rates are not competitive. Their ch...
    1. August 07, 2013
  • Jeanine House: I hope you can help me we are looking for someone ...
    1. August 08, 2013
  • ibrahim: India never become friend of bangladesh 1971 they ...
    1. September 09, 2013
© 2021 www.akmnahid.com All Rights Reserved