Open In App

CSS ::selection Selector

Last Updated : 05 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The selection selector is used to set the CSS property to the part of the document that is selected by the user (such as clicking and dragging the mouse across text). Only some CSS properties is used with ::selection selector. Supported CSS properties are color, background, cursor, and outline. 

Syntax:

::selection {
    // CSS Property
}

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>::selection Selector</title>
    <style>
        h1 {
            color: green;
        }
 
        body {
            text-align: center;
        }
 
        /* CSS property for Firefox */
        ::-moz-selection {
            color: white;
            background: green;
        }
 
        ::selection {
            color: white;
            background: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>::selection selector</h2>
    <p>A Computer Science portal for geeks </p>
</body>
 
</html>


Output:

 selection 

Supported Browsers: The browser supported by ::selection Selector are listed below:

  • Apple Safari 1.1 and above
  • Google Chrome 1.0 and above
  • Edge 12.0 and above
  • Firefox 62.0 and above
  • Opera 9.5 and above

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads