JSFiddle - React, Tailwind, and code Playground

by Narayan Prusty

HTML

Welcome to QNimate 
<div>
    Welcome to QNimate
</div>

CSS

/*Changing Text selection color for the whole web page*/
/* All browsers */
::selection
{
    background-color: green;
    color: white;
}

/*For firefox browser*/
::-moz-selection
{
    background-color: green;
    color: white;    
}

/*changing text selection color for all div*/
/* All browsers */
div::selection
{
    background-color: red;
    color: white;
}

/*For firefox browser*/
div::-moz-selection
{
    background-color: red;
    color: white;    
}