CSS Variables Using PHP

CSS is an amazing formatting tool but it has one glaring omission: variables. In My CSS Wishlist, I proposed a PHP-like syntax for CSS variables. Using PHP, I’ve made the idea of easy, dynamic CSS a reality. The Sample CSS /* globals */ * { margin:0; padding:0; } body { color:$body_text_color; font-size:$body_font_size; } The above … Continue reading CSS Variables Using PHP