Tag Archives: css

Abusing text-shadow

text-shadow is really nice for making your copy appear to “pop”. Conversely, I found if you hack around a little bit, you can create a blurry text effect. All it takes is 2 simple lines of CSS: h1 { text-shadow: … Continue reading

Posted in Uncategorized, css, silly, typography | Tagged: , , | Leave a comment, start the conversation!

iPad orientation

Jason Grigsby posted a cool article about a CSS-only solution to updating styles based on iPad orientation: http://www.cloudfour.com/ipad-orientation-css/ In my project I used JavaScript to detect the “orientationchange” event. Then I test if Math.abs(window.orientation) == 90… then I know you’re in … Continue reading

Posted in iPad | Tagged: , , | 2 Comments, join the conversation!

The problem with @font-face

Lately some “bullet-proof” cross-browser methods have arisen using @font-face: http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/ http://readableweb.com/mo-bulletproofer-font-face-css-syntax/ While these provide a functional way of embedding fonts I contest they are still not “bullet-proof” since there are serious legal implications if these methods are misused. The big … Continue reading

Posted in css, typography | Tagged: , , | 5 Comments, join the conversation!