DEV Community

Cover image for How to Use Highlight Selected Text in Tailwind CSS
saim
saim

Posted on • Edited on • Originally published at larainfo.com

11 1 1

How to Use Highlight Selected Text in Tailwind CSS

In this section we will see how to use highlight text in tailwind css. we will see, highlight text color , highlight text background color with Tailwind CSS 3.

view

Example 1

Tailwind CSS highlight section text color.



<div class="max-w-xl selection:text-purple-900">
  <p>
    Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
    a strange calm came over me
  </p>
</div>


Enter fullscreen mode Exit fullscreen mode

tailwind css simple highlight selected text

Example 2

Tailwind CSS highlight section background color.



<div class="max-w-xl selection:bg-purple-600">
  <p>
    Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
    a strange calm came over me
  </p>
</div>


Enter fullscreen mode Exit fullscreen mode

tailwind css background highlight selected text color

Example 3

Tailwind CSS highlight selection background color and text color.



<div class="max-w-xl selection:bg-purple-300 selection:text-purple-900">
  <p>
    Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
    a strange calm came over me
  </p>
</div>


Enter fullscreen mode Exit fullscreen mode

tailwind css highlight text color

Tiugo image

Modular, Fast, and Built for Developers

CKEditor 5 gives you full control over your editing experience. A modular architecture means you get high performance, fewer re-renders and a setup that scales with your needs.

Start now

Top comments (0)

AWS Security LIVE! Stream

Go beyond the firewall

There's more to security than code. Explore solutions, strategies, and the full story on AWS Security LIVE!

Learn More

👋 Kindness is contagious

Dive into this informative piece, backed by our vibrant DEV Community

Whether you’re a novice or a pro, your perspective enriches our collective insight.

A simple “thank you” can lift someone’s spirits—share your gratitude in the comments!

On DEV, the power of shared knowledge paves a smoother path and tightens our community ties. Found value here? A quick thanks to the author makes a big impact.

Okay