My textarea won't accept any width attributes
for some开发者_运维知识库 odd reason the text area I have in my site won't accept the width I tell it to, I've tried to select it three times in the CSS
just to make sure!
Here is a jsfiddle example that shows what I want, and here is the page where it doesn't want to work. I have searched through the CSS
to find any conflicting textarea
properties, but there are none.
Thanks for the help!
Edit: If you have Firebug, don't forget about it, and use it!
In one of your CSS files, you specified textarea { min-width: 40em; }
.
You have min-width: 40em
for all textarea
elements.
精彩评论