Category Archives: Tips
A Crash-Course in CSS Media Queries
Method 1: Within your Stylesheet @media screen and (min-width : 1200px) { /* let’s do somethin’ */ } Method 2: Import from within your Stylesheet @import url( small.css ) screen and ( min-width: 1200px ); Note that you can also … Continue reading
Best design scripts, tools and websites collection
Compass is a stylesheet authoring framework that makes your stylesheets and markup easier to build and maintain. With compass, you write your stylesheets in Sass instead of CSS. Using the power of Sass Mixins and the Compass community, you can … Continue reading
Getting Offline Access with HTML5 Application Cache using Htaccess
Just when you thought you’d seen all the cool features of HTML5, I’m here to bring you yet another one. The internet is no longer about just websites; it’s about web applications. Often, our users are on portable or mobile … Continue reading
Quick Tip: How to Target IE6, IE7, and IE8 Uniquely with 4 Characters
IE8 and Below The key to targeting Internet Explorer 8 and below, with a hack, is to append “\9″ to the end of your style. For example: body { color: red; /* all browsers, of course */ color : green\9; … Continue reading
IE Windows Only – CSS Conditional comments
Explorer 5+ Windows only. If you have multiple Explorers installed the conditional comments will view each install as the highest installed version (usually IE 6). This page has been translated into Brazilian Portuguese, Simplified Chinese, Russian, Hungarian, Romanian, Farsi, Italian, … Continue reading
CSS Tip 3 # ShortHand Guide
CSS Shorthand Guide Ok. Let’s set the record straight. There is no official guide for each and every CSS shorthand property value. So let’s work together and put one together shall we? Ok. Straight to the business. Anytime I’ve ran … Continue reading
CSS Tip 2 : Quotes are optional in URL
The format of a URI value is ’url(’ followed by optional white space followed by an optional single quote (’) or double quote (“ character followed by the URI itself, followed by an optional single quote (’) or double quote … Continue reading
CSS Tips 1 : Support for 2 values of same css property
If a User Agent(UA) does not support a particular value, it will ignore that value when parsing style sheets, as if that value was an illegal value . For example: Example(s): h3 { display: inline; display: run-in; } A UA … Continue reading