Files
terminal-lab/pxterm/test.html
2026-03-04 13:25:26 +08:00

14 lines
315 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
div { user-select: text; -webkit-user-select: text; font-size: 30px;}
span { pointer-events: none; }
</style>
</head>
<body>
<div><span>Hello world with pointer events none</span></div>
</body>
</html>