textarea width

We can safely increase the textarea width from 98% to 100%. 

```box-sizing``` handles the layout nicely and it won't allow the overflow. 

If more details is needed, please see: http://davidwalsh.name/textarea-width this is the best example I could find.
This commit is contained in:
Emil Uzelac 2014-05-28 00:05:18 -05:00
parent 4359baa57f
commit 9f295c197d
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ textarea {
overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
padding-left: 3px;
vertical-align: top; /* Improves readability and alignment in all browsers */
width: 98%;
width: 100%;
}
/*--------------------------------------------------------------