Category: Web work
These days, most of my work is very related to the online world. Building web sites, reviewing web applications, integrating with web services, coordinating people who are far away from each other, etc. Whenever I find a new tool or service or an innovative, interesting idea about working online, I share it in this category.
Font sizing with REM
The em unit is relative to the font-size of the parent, which causes the compounding issue. The rem unit is relative to the root—or theÂ
html—element. That means that we can define a single font size on theÂhtmlelement and define all rem units to be a percentage of that.[…]
You might be surprised to find that browser support is surprisingly decent: Safari 5, Chrome, Firefox 3.6+, and even Internet Explorer 9 have support for this. The nice part is that IE9 supports resizing text when defined using rems. (Alas, poor Opera (up to 11.10, at least) hasn’t implemented rem units yet.)
What do we do for browsers that don’t support rem units? We can specify the fall-back using px, if you don’t mind users of older versions of Internet Explorer still being unable to resize the text (well, there’s still page zoom in IE7 and IE8). To do so, we specify the font-size using px units first and then define it again using rem units.
Andrew Nacin: How WordPress Evolves Without Breaking Everything
Andrew Nacin: How WordPress Evolves Without Breaking Everything
Backward compatibility!
Backward compatibility!
Backward compatibility!
WP-CLI – command line interface for WordPress
Contributing Advent 21: Timezone database
Contributing Advent 21: Timezone database
Timezones have always been a pain, and Daylight Saving(s) time does not make it a lot easier. Then of course you have governments that decide to change the rules. Often that is done nicely in advance, but once in a while the rule changes are announced at the absolutely last moment, or, sometimes even after the new rules have come into effect. To track the craziness, have a look at Time Zone News, and this image to see how many different rules there are!
