From 9f295c197dafcb69987513d49dd44b0f2f13bc7d Mon Sep 17 00:00:00 2001 From: Emil Uzelac Date: Wed, 28 May 2014 00:05:18 -0500 Subject: [PATCH] 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. --- style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.css b/style.css index 7b67cf26..a61fe8d6 100644 --- a/style.css +++ b/style.css @@ -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%; } /*--------------------------------------------------------------