Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables,mixins, selector inheritance, and more. It’s translated to well-formatted, standard CSS using the command line tool or a web-framework plugin.
Category Archives: CSS
CSS Pseudo-elements
CSS pseudo-elements are used to add special effects to some selectors.
CSS Pseudo-classes
CSS pseudo-classes are used to add special effects to some selectors.
How To Create an IE-Only Stylesheet
The Code This would go in your <head> with all the other regular CSS <link>ed CSS files. The opening and closing tags should be familiar, that’s just regular ol’ HTML comments. Then between the brackets, “IF” and “IE” should be fairly obvious. The syntax to note is “!” stand for “not”, so !IE means “not …
MAC STYLE MENU “Outside the Box” Navigation with jQuery
Just about every website uses the regular navigation concepts we’re all used to. After awhile this can get pretty boring, especially for designers who thrive on creativity. While mimicking the OS X dock and stacks isn’t new, it’s certainly not common.
CSS How do I disable textarea resizing?
textarea { resize: none; }