CSS for width: clamp;

PHOTO EMBED

Wed Jun 15 2022 05:13:46 GMT+0000 (Coordinated Universal Time)

Saved by @jaysoni123 #css

body {
  display: grid;
  height: 100vh;
  place-items: center;
}

progress {
  accent-color: #30cc7e;
  place-self: center;
  width: clamp(300px, 60%, 850px);
}

.notice {
  background: #fff9c4;
  border-radius: 6px;
  padding: 0.5rem;
  text-align: center;
  width: clamp(300px, 60%, 850px);
}
content_copyCOPY