how to make textarea same width in IE and Firefox? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:19:26Zhttp://stackoverflow.com/feeds/question/395019http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox2how to make textarea same width in IE and Firefox?Waleed Eissa2008-12-27T13:57:00Z2009-11-16T10:43:48Z
<p>I want to have a textarea that's 500px, this is the CSS I use for the textarea:</p>
<p>width: 498px;
padding: 0px;
margin: 0px;</p>
<p>I noticed IE and Chrome have a 1px border by default, on the other hand FF have a 2px border which results the textarea to be 502px instead of 500px, any workarounds?</p>
<p>Just a note, I could explicitly specify the texarea border width, ie. border-width: 1px, but the problem here is that it doesn't work nicely with IE (the default textarea border in IE doesn't visually look ok when the border is set to 1px), I could change the border color but I don't want to do this, I prefer to keep the default browsers styles, I just want the width to be the same in all browsers without changing the default styles or setting a color to the border, is this possible?</p>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/395022#3950223Answer by Dave Markle for how to make textarea same width in IE and Firefox?Dave Markle2008-12-27T14:01:40Z2008-12-27T14:01:40Z<p>You can set all of your browsers' default styles to be the same by using a Reset CSS sheet at the top of your document. I like the <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">YUI reset CSS</a> myself. That should set the base styles for all of the controls to be the same across all browsers to begin with, and that should allow for a more predictable layout.</p>
<p>IMO if you let each browser have its own style (which can even be customized by the user!) , you're on the road to having an unpredictable style for your application, with problems popping up in places you never thought they would. Better to use a reset CSS and then style your applications accordingly. If you checkout yahoo's site (referenced), they'll also have their own "base" CSS that you can start from, which is pretty cool.</p>
<pre><code><link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.6.0/build/reset/reset-min.css">
</code></pre>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/395024#3950240Answer by Toby Mills for how to make textarea same width in IE and Firefox?Toby Mills2008-12-27T14:02:25Z2008-12-27T14:02:25Z<p>We tend to create separate style sheets for IE and FF to get around their 'quirks'. A simple bit of code can then be used to ensure the correct style sheet is used.</p>
<pre><code><!--[if lte IE 6]> works for < than IE 6
<link href="/css/IE6Below.css" media="screen" rel="Stylesheet" type="text/css" />
<![endif]-->
</code></pre>
<p>There is also
works for IE 6</p>
<p>etc...</p>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/395025#3950250Answer by Chris Conway for how to make textarea same width in IE and Firefox?Chris Conway2008-12-27T14:04:33Z2008-12-27T14:04:33Z<p>we use jQuery to decorate our html elements and let it deal with cross browser issues.</p>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/395204#3952040Answer by allesklar for how to make textarea same width in IE and Firefox?allesklar2008-12-27T17:45:31Z2008-12-27T17:45:31Z<p>In essence you are deploring that the browser defaults are not the same with every browser but don't want to change those properties yourself directly.</p>
<p>This does not make sense.</p>
<p>Like others I'd recommend using a reset stylesheet (I'm a big fan of Eric Meyer's) and then style the borders exactly the way you want them. Easy. Clear. No downsides.</p>
http://stackoverflow.com/questions/395019/how-to-make-textarea-same-width-in-ie-and-firefox/1741388#17413880Answer by Gabriel Inbuon for how to make textarea same width in IE and Firefox?Gabriel Inbuon2009-11-16T10:43:48Z2009-11-16T10:43:48Z<p>Perfect!!!! YUI Is working for me.
</p>