Selection Selector using Css
<!DOCTYPE html> <html> <head> <style> ::-moz-selection { /* Code for Firefox */ color: blue; background: yellow; } ::selection { color: blue; background: yellow; text-shadow: 2px 2px 2px grey; } </style> </head> <body> <h1>Select some text on this page:</h1> <p>Hello World…