Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<!-- Accessible carets should be put around the unselectable <span> -->
<div><span style="user-select:none"><span style="padding:100px">ABC</span></span></div>
<script>
getSelection().selectAllChildren(document.querySelector("div"));
</script>
</body>
</html>