Learn HTML
CSS Introduction
CSS Basic Syntax
CSS Selector
CSS Units
CSS Text
CSS Border
CSS Outline
CSS Padding
CSS Margin
CSS Height & Width
CSS Overflow
CSS Resize
CSS Background
CSS Box Sizing
CSS Position
CSS Float
CSS Clear
CSS Clip Path & Shape Outside
CSS Display
CSS Media Queries
CSS Pseudo Classes & Elements
CSS Filter
CSS Transition
CSS Transform
CSS Animation
CSS List Style
CSS Table
CSS Scrollbar Styling
CSS Icon
CSS Cursor
CSS Variable & Calc
CSS User Select
CSS Flexbox
Learn Javascript
Learn Django
Suppose we have a div or box. Now suppose some more text comes there. In this case scroll bar will be
generated and we have to use scroll bar to read the whole content. In this type of case, we use resize. If we
use resize then we can resize the div or box height and width according to our need. When the work is done
then we can set the previous size or height or width of the div or box.
It has four values:
resize:vertical;
If we use vertical then we can only resize the div or box vertically.
resize:horizontal;
If we use horizontal then we can only resize the div or box horizontally.
resize:both;
If we use both then we can resize the div or box both vertically and horizontally.
resize:none;
Its means you can't resize.
We can't normally use resize properties. We will need a helper property and that is overflow. Because we use
resize when the data is overflowing.