blob: 6dcedb4a4a6ff15f3e967ddd580136462ed9e67c (
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>
|