I'm attempting to use CSS3's resize to make an absolutely positioned div resizable in Safari and Firefox Beta. No matter what I do I can't seem to make it work – are there situations that resize cannot be used?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

In order for it to work in Safari, it seems to need overflow:auto applied to the div.

Additionally, the display height and width of the div will act as min-height and min-width.

This only worked for me in Safari, not in Firefox 3.5.

<div id="box"> Nice box </div>

CSS:

#box {
   /* important */
   resize: both;
   overflow: auto;

   /* Styling */
   background: red;
   position: absolute; /* per the question */
   top: 50px;
   left: 50px;
   width: 300px
}
link|improve this answer
I know have no memory of what I was trying to accomplish with this, but thanks for the help! Something "sticky notes" related I think… – arbales Nov 16 '10 at 9:58
feedback

wait till Firefox 4

https://developer.mozilla.org/en/CSS/-moz-resize

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.