CSS height, min-height, max-height | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

CSS height, min-height, max-height

I am confuse in CSS properties height, min-height, max-height, similarly with width, whats the difference in these values in what changes they causes? If someone make me understand this concept I will be really glad.

10th Mar 2018, 12:22 PM
Abdul Basit
Abdul Basit - avatar
1 Answer
+ 12
height: Sets the height of the block elements. min-height: If the value (height) is less than the value of min-height, then the height of the element is assumed to be min-height. max-height: If the value (height) is greater than the value of max-height, then the height of the element is assumed to be equal to the value of max-height. The same is true for width.
10th Mar 2018, 12:47 PM
K137(){/**/};
K137(){/**/}; - avatar