Ephera to Programmer HumorEnglish · 2 days agoStill wild to me that we built webpages like thisimagemessage-square9fedilinkarrow-up1213arrow-down112
arrow-up1201arrow-down1imageStill wild to me that we built webpages like thisEphera to Programmer HumorEnglish · 2 days agomessage-square9fedilink
minus-squareEpheraOPlinkfedilinkEnglisharrow-up1·19 hours agoWell, the situation you describe, is probably best handled by CSS media queries. In case you’re not familiar, you can write: @media (width < 800px) { h1 { font-size: 110%; } } …to get smaller headings on mobile, for example. But yeah, reality may be more ugly. Especially, if you’re using a bulky JS framework, it may be easier to do the JS dance.
Well, the situation you describe, is probably best handled by CSS media queries.
In case you’re not familiar, you can write:
@media (width < 800px) { h1 { font-size: 110%; } }
…to get smaller headings on mobile, for example.
But yeah, reality may be more ugly. Especially, if you’re using a bulky JS framework, it may be easier to do the JS dance.