Questions tagged [min]

Lowest amount. Minute, microscopic, minimum.

Setting a CSS grid column to have a minimum width of `max-content` and a specific

I am trying to create a CSS grid where the column widths adjust based on the content, but with a minimum width of 100px. I attempted using minmax(max-content, 100px), however it did not produce the desired result. In the example below, the narrow column sh ...

Finding the earliest date in a Laravel collection

I have a collection named promotions which contains several promotions, each of which has multiple exceptions: foreach ($promotions as $p) { $t = $p->exceptions() ->where('sunday','on') ->whereDate('start','<=', $c_ ...