Sass max() Function

You are Here:

Sass max() Function

The max() function returns the highest of one or more numbers. A list of numbers can be passed using ... (three dots).

Example

SASS TO CSS CONVERTER
//Check your console @debug max(2px, 4px); // 4px $heights: 30px, 60px, 90px; @debug max($heights...); // 90px

Syntax

max($x, $x1, ..., $xN)

Parameter Value

ValueTypeExplanation
$x, $x1, ..., $xNRequiredNumbers (minimum two)

Return Value

ValueExplanation
NumberReturns the highest of one or more numbers.

Reminder

Hi Developers, we almost covered 99.1% of Sass Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in Sass.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author