14 lines
315 B
HTML
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>
|