Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
span::selection {
background-color: transparent;
color: currentColor;
}
</style>
</head>
<body>
<div><span>ABC</span></div>
<script>
getSelection().selectAllChildren(document.querySelector("div"));
</script>
</body>
</html>