blob: 4282ac7f558ff9926fda283768289de90927bbcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!DOCTYPE html>
<html>
<head>
<style>
div { min-height: 20px; }
</style>
</head>
<body onload="document.querySelector('div').focus();">
<div contenteditable="true"></div>
</body>
</html>
|