css3 - Are viewport units vw/vh/vmin/vmax not zoom friendly? -
as per how use css-values viewport-relative-lengths?, i've tried using viewport units in following way, automatically magnify tiny page on big monitor:
/* automatically magnify business-card-style page in large viewports */ @media (min-width: 50em) , (min-height: 64em) { /* start 100% @ 50em, we'll have 150% magnification @ 75em */ html {font-size: 2vmin;} }
however, when tested in google chrome, made zoom feature stop working.
is bug/feature in chrome zoom stop working above code in place, or design , spec?
Comments
Post a Comment