<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Text editor</title>
<style type="text/css">
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
border: 0;
padding: 0;
position: relative;
height: 100%;
width: 100%;
}
html { padding: 2px; }
textarea {
margin: -2px;
top: 2px;
left: 2px;
font-size: 1.5em;
padding: .2em;
resize: none;
}
</style>
</head>
<body><textarea autofocus></textarea></body>
</html>