forked from mirror/_s
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:
parent
4359baa57f
commit
9f295c197d
|
@ -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%;
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------
|
||||
|
|
Reference in New Issue