Answers for "using css clamp is good or not"

CSS
5

clamp css

font-size: clamp(lower-bound, preferred-value, upper-bound);
Posted by: Guest on June-23-2021
1

CLAMP CSS

/*clamp(min value,idle value , max value);*/
.title{
  /*this create minimum font size ,maximum font size */ 
  font-size:clamp(2rem,5vw,5rem);
}
Posted by: Guest on August-14-2021

Browse Popular Code Answers by Language