Open In App

CSS ::selection Selector

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: 




<!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:



  

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

Article Tags :