This is an awesome video that explains em,rem and vw. almost all stuff we can do in Webflow.
Except THIS
Any have a good solution for doing calc in the designer?
fontsize: calc (0.5em+1vw);
This is an awesome video that explains em,rem and vw. almost all stuff we can do in Webflow.
Except THIS
Any have a good solution for doing calc in the designer?
fontsize: calc (0.5em+1vw);
The missing piece for your video is also to use relative line-height units:
p {
line-height: 1.5;
}
No way (Only by custom style (before body/head -or- embed html).
Example:
<style>
p{
font-size: calc (0.5em+1vw);
}
</style>
Related:
I never try this on webflow - but her you find an idea to set the calc() for the body:
Thank you @Siton_Systems for your In depth answer! Really appreciate it!
And yes. I use unitless because of that video
Glad you added it!