postcss-fluid-typography
Version:
PostCSS plugin for responsive typography values using linear scale
17 lines (16 loc) • 331 B
CSS
.foo {
line-height: calc(10px + 20 * ((100vw - 300px) / 600));
--line-height: calc(10px + 20 * ((100vw - 300px) / 600));
}
@media screen and (min-width: 900px) {
.foo {
line-height: 30px;
--line-height: 30px;
}
}
@media screen and (max-width: 300px) {
.foo {
line-height: 10px;
--line-height: 10px;
}
}