Course Content
CSS Basic
0/1
CSS Selectors
0/1
CSS Comments
0/1
CSS Backgrounds
0/1
CSS Borders
0/1
CSS Outline
0/1
CSS Fonts
0/1
CSS Height and Width
0/1
CSS Margins and Paddings
0/2
CSS Icons
0/1
CSS Links
0/1
CSS Lists
0/1
CSS Tables
0/1
CSS Display Properties
0/1
CSS Max-Width Property
0/1
CSS Positioning Elements
0/1
CSS Z-Index Property
0/1
CSS Overflow
0/1
CSS Float
0/1
CSS Opacity
0/1
CSS Forms
0/1
CSS Dropdowns
0/1
CSS Buttons
0/1
CSS Media Queries
0/1
About Lesson

The max() function returns the largest value among the provided arguments. It’s useful when you want to set a property value that needs to be a minimum threshold or larger.

Syntax:

CSS
width: max(300px, 50%);

Example:

This ensures that the width will be at least 300px, but if 50% of the container is larger than 300px, it will take that value instead:

CSS
div {
  width: max(300px, 50%);
}