Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

234
Views
How can I automatically interpolate n intermediate values for a CSS property given an upper and lower bound?

If I have some media queries that set a value based on the current screen width how can I automate the computation of n intermediate steps?

As example: if I had a top value of 50% at 1080p and a value of 32% at 2160p I should be able to compute 4 intermediate steps:

@media(min-height: 1080px) {
  top: 50%;
}
@media(min-height: 1350px) {
  top: 45.5%;
}
@media(min-height: 1620px) {
  top: 41%;
}
@media(min-height: 1890px) {
  top: 36.5%;
}
@media(min-height: 2160px) {
  top: 32%;
}

I'm interested in any sort of possible solution: pure CSS, Sass, JS, etc.

(Also, could this kind of computation be possible for non linear values?)

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You could use a mixin to generate the steps, it would be a basic @for loop.
Depending on the flexibility you want for the mixin you'll need few arguments:

  • $stepsNb
  • $minWidthQuery
  • $maxWidthQuery
  • $property
  • $minValue
  • $maxValue

Then the mixin will calculate the steps for you:

@mixin interpolateSteps($stepsNb: 5, $minWidthQuery: 1080px, $maxWidthQuery: 2160px, $property, $minValue, $maxValue) {
    $step: ($maxWidthQuery - $minWidthQuery) / ($stepsNb - 1);
    $stepValue: ($maxValue - $minValue) / ($stepsNb - 1);
    
    @for $i from 0 to $stepsNb {
        @media(min-height: $minWidthQuery + ($step * $i)) {
            #{$property}: $minValue + ($stepValue * $i);
        }
    }    
}

You would use it like this:

.foobar {
    @include interpolateSteps($property: top, $minValue: 50%, $maxValue: 32%);
}

And it would output:

@media (min-height: 1080px) {
  .foobar {
    top: 50%;
  }
}
@media (min-height: 1350px) {
  .foobar {
    top: 45.5%;
  }
}
@media (min-height: 1620px) {
  .foobar {
    top: 41%;
  }
}
@media (min-height: 1890px) {
  .foobar {
    top: 36.5%;
  }
}
@media (min-height: 2160px) {
  .foobar {
    top: 32%;
  }
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!