css - how to make textarea width larger than form width? -
i making form, , need width of textarea larger form width, want float elements above textarea , left of other input fields. i've tried set position of textarea absolute it's not working. here css have, , it's making text area same width form:
form { width: 210px; overflow: visible; } textarea { height: 215px; width:370px!important; }
im not sure if works, try adding these 3 rules textarea:
position:absolute; left:0; right:0;
found tip here: is there way make child div's width wider parent div using css?
Comments
Post a Comment