The min() and max() values allow you to use the largest or smallest of the defined values.
The example does this:
div.min { width: min(100px,25em); } div.max { width: max(100px,25em); }
The two elements should have a different width.