strange issue with css variables and clamp css function
I am having trouble seeing why the following CSS code involving custom css variables fails to work as expected: html <ul class="grid"> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ul> css .grid > *:nth-child(2n) { border-right-width: calc((1 - abs(clamp(-1, var(--columns, 1) -…