blob: 92cc4f38ecee5b09bb1c85234154cb2198a76a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html>
<style>
textarea {
width: 100px;
height: 100px;
box-sizing: border-box;
padding: 50px 0px;
overflow: hidden;
resize: none;
}
</style>
<!-- Text should be visible -->
<textarea>Foo</textarea>
|