JSFiddle - React, Tailwind, and code Playground

http://stackoverflow.com/questions/7224445/css3-selection-behaves-differently-in-ff-chrome

by k_sav

HTML

<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>

CSS

body{
    background-color: #0E0CAA;
    color: white;
    font-family:arial;
}
p::-moz-selection {
    background:rgba(255, 255, 125, 0.99);
    color:#032764;
}
p::-webkit-selection {
    background:rgba(255, 255, 125, 0.99);
    color:#032764;
}
p::selection {
    background:#0E0CAA;
    color:#0E0CAA;
}