You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
font-size:( 20px 25px 45px);
Font size will break on specified breakpoints based on values above.
font-size: linear( 20px 25px 45px);
Font size will change linerly from defined breakpoints, this will also mean definin breakpoints with something new if possible like
breakpoints {
768px;
1024px;
3rd value is above 1024px
}
this would lead to simplifying media queries that are used the most and using expression like div {
width: 200px 300px 400px; }
Or
div {
padding-inline: 100px 40px 20px; }
These are the ideas to simplify and unify responsive editing
The text was updated successfully, but these errors were encountered:
font-size:( 20px 25px 45px);
Font size will break on specified breakpoints based on values above.
font-size: linear( 20px 25px 45px);
Font size will change linerly from defined breakpoints, this will also mean definin breakpoints with something new if possible like
breakpoints {
768px;
1024px;
3rd value is above 1024px
}
this would lead to simplifying media queries that are used the most and using expression like div {
width: 200px 300px 400px; }
Or
div {
padding-inline: 100px 40px 20px; }
These are the ideas to simplify and unify responsive editing
The text was updated successfully, but these errors were encountered: