13 lines
235 B
HTML
13 lines
235 B
HTML
<!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>
|