vw units for font sizes to scale text based on screen width. clamp() in custom CSS for min/max control on font scaling. To make text scale automatically across different iOS screen sizes in Webflow, you should use responsive units like vw (viewport width) or set up responsive styles using Webflow’s breakpoints.
vw) for Font Sizes
vw (e.g., 5vw).2.5vw for body text).
vw doesn’t give the desired result.
vw with min() or clamp() for Better Control
<style> tag in the Page Settings to use clamp():clamp(14px, 2.5vw, 24px) means text will never be smaller than 14px or larger than 24px.
% or em for child text elements.
To ensure text scales automatically across different iOS screen sizes in Webflow, use viewport-based units like vw, optionally refine with clamp() in custom CSS, and adjust settings per device using Webflow's breakpoints. This ensures consistent, readable typography across all iOS devices.