DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: Css

Disable text selection highlighting using CSS rule

Share

There is a CSS standard way by which you can disable the highlighting effect i.e. disable text selection when you select any text.

This can be done using JavaScript but using CSS you can achieve this also.

<style type="text/css">
.disableselect {
user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
</style>
<p>You can select this text</p>
<p class="disableselect">But, you can not select this text</p>

RESULT:

You can select this text

But, you can not select this text

For IE, you can use JavaScript solutions for doing this as some of the browser may not resolve this strategy.

<p onselectstart="return false;">You can not select this text</p>
CSS Designer

Recent Posts

5 Reasons to use a professional mortgage broker

When you are looking to apply for a mortgage the one thing that most people…

2 days ago

Tips – Advanced Blackjack Strategy

Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…

1 week ago

The Modern Practice of Yoga: How Balance, Mindfulness, and Lifestyle Design Are Transforming Everyday Wellbeing

Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…

1 week ago

Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared

Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared Every exchange claims to have…

2 weeks ago

Coach Bus Companies NYC: A Complete Guide Coach Bus Companies NYC

One of the world's busiest travel hubs, New York City relies heavily on coach bus…

3 weeks ago

The Advantages of Event Marketing

Whether large scale or small scale, many businesses want to market their services or products…

3 weeks ago