blob: 6056cf827dd989b03d7d4744d7b73ec5aaabef19 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>::selection pseudo-element</title>
<style type="text/css">p::selection { background-color: rgba(99, 254, 0, 0.95); /* alpha < 1 so that we don't blend the background color with white. */ }
</style>
<link rel="first" href="css3-modsel-1.html" title="Groups of selectors">
<link rel="prev" href="css3-modsel-39b.html" title="::first-letter pseudo-element">
<link rel="next" href="css3-modsel-41.html" title="::before pseudo-element">
<link rel="last" href="css3-modsel-d5e.html" title="NEGATED :indeterminate with :checked">
<link rel="up" href="./index.html">
<link rel="top" href="../../index.html">
</head>
<body>
<p>Any textual selection in this long paragraph should have green background. Any textual selection in this long paragraph should have green background. Any textual selection in this long paragraph should have green background.</p>
<script>
var p = document.querySelector("p");
window.getSelection().setBaseAndExtent(p, 0, p, 1);
</script>
</body>
</html>