iPads will not trigger click events for all elements. You can fix that, but you don't want to know...
This blew my mind today: 12 Little-Known CSS Facts 12 Little-Known CSS Facts (The Sequel) Please make sure...
CSS (+ some Javascript) framework, implementing Google's material design for static web pages. Can be used for plain websites without...
Note: Making a reverse proxy with nginx is much more straightforward. A reverse proxy is a "man in the middle...
Rails comes with a Rake task notes that shows code comments that start with "TODO", "FIXME", or "OPTIMIZE".
Fontawesome 4 ships with many useful CSS helper classes. Enlarge Icon Add fa-lg (133%), fa-2x, fa-3x, fa...
Clever hack using data-attributes to assign labels to cells. It's still a massive duplication of code (labels), but...
If you want to rotate text, you can use CSS transforms in somewhat modern browsers to rotate the container element...
Often times you want to give a bunch of elements the same style, except for the last. For example borders...
The debate between using mixins or extends in Sass has been heating up recently. From the surface it appears they...
Note: The information in this card might be outdated. The Capybara API is somewhat hard for parse for a list...
This jasmine plugin helps with testing DOM manipulation in two ways: It gives you DOM-related matchers like toBeVisible() or...
jQuery comes with .animate() that lets you transition some CSS selectors: function floatIn($element) { $element.css({ 'opacity': 0, 'margin-top': 200px...
Bourbon is a library of pure Sass mixins that are designed to be simple and easy to use. No configuration...
The benefit of the Rails asset pipeline is that it compiles your stylesheets and javascripts to a single file, respectively...
The Rails asset pipeline improves delivery of application assets (javascripts, stylesheets, images, fonts). Here are some basic facts about its...
Clamps (ie. cuts off) an HTML element's content by adding ellipsis to it if the content inside is too...
The asset pipeline changes the paths of CSS files during precompilation. This opens a world of pain when CSS files...