{"id":14099,"date":"2011-09-06T12:04:48","date_gmt":"2011-09-06T19:04:48","guid":{"rendered":"http:\/\/css-tricks.com\/?page_id=14099"},"modified":"2019-01-31T07:29:30","modified_gmt":"2019-01-31T14:29:30","slug":"resize","status":"publish","type":"page","link":"https:\/\/css-tricks.com\/almanac\/properties\/r\/resize\/","title":{"rendered":"resize"},"content":{"rendered":"

The resize<\/code> property controls if and how an element can be resized by the user by clicking and dragging the bottom right corner of the element. <\/p>\n

.module {\r\n  resize: both;\r\n}<\/code><\/pre>\n

Super important to know:<\/strong> resize<\/code> does nothing unless the overflow<\/code> property<\/a> is set to something other than visible<\/code>, which is its initial value for most elements.<\/p>\n

It’s also worth knowing that Firefox will let you resize an element smaller than its original size. Webkit browsers will not let you resize an element to make it smaller, only larger (in both dimensions).<\/p>\n

Values<\/h3>\n