Testing CSS Clamp

by MegaScience

HTML

<div id="text">Hello</div>

CSS

#text {
  height: clamp(100px, 50vh, 300px);
  background-color: blue;
  color: white;
  padding: 2px;
  box-sizing: border-box;
}