Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a screen I have a text Area box with rounded rectangle in the back ground . when i resize the text area horizontally the rounded rectangle also increased in the background but when i resize the text area vertically the rounded rectangle is not resized in the background.

enter image description here

This is the style I was using:

 background-color: #EAFFEA;
 padding: .5em;
 -webkit-border-radius: .5em;
 -moz-border-radius: .5em;
 border-radius: .5em;
 border: 1px solid gray;
share|improve this question
I cannot find the attachment... – Felix Kling Jul 2 '11 at 20:36
Have you tried not setting a height on the container? – Vap0r Jul 2 '11 at 20:42
You haven't given us enough code to diagnose the problem. Have you checked in Firebug to see if there's any other CSS being applied to the element, or if there might be an element outside it that is constraining its height? If you can give us a working example (in JSFiddle.com, perhaps?), then we are more likely to be able to help. – Spudley Jul 2 '11 at 20:45
What browser? Tried this basic test just now in Chrome 12 and it works fine both horizontally and vertically.. – Shadow Wizard Jul 2 '11 at 20:51
In which browser(s)? I tried your container styles in Firefox 5.0 - works fine for me. – Viktor Jul 2 '11 at 20:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.