CSS Tutorial in Hindi [Part 25] - CSS Resizable

Tech Gun
Youtube
Related Topic
:- CSS Web Development

In this video i will talk about Resizable in CSS. The resize property defines if (and how) an element is resizable by the user. Note: The resize property does not apply to inline elements or to block elements where overflow="visible". So, make sure that overflow is set to "scroll", "auto", or "hidden". The resize property is specified as a single keyword value from the list below. Values -------------------- 1. none - The element offers no user-controllable method for resizing it. 2. both -The element displays a mechanism for allowing the user to resize it, which may be resized both horizontally and vertically. 3. horizontal - The element displays a mechanism for allowing the user to resize it in the horizontal direction. 4. vertical - The element displays a mechanism for allowing the user to resize it in the vertical direction.

Comments