Textarea resizes only vertically.

This commit is contained in:
aroquen 2015-05-25 00:31:55 +02:00
parent e4a17fedc6
commit f7176e7aef
1 changed files with 5 additions and 1 deletions

View File

@ -20,7 +20,11 @@ ol, ul {list-style-position: inside;}
fieldset {border: none;}
legend {font-weight: bold; font-size: 1.2em;}
input, textarea, select, option {padding: 2px;}
textarea {overflow:auto;}
textarea {
overflow:auto;
resize: vertical;
}
body {
background-color: #f2f2f2;