Category Archives: CSS
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 Beginners tablet 2: Outline
outlines differ from borders in the following ways: 1. Outlines do not take up space. 2. Outlines may be non-rectangular. The outline properties control the style of these dynamic outlines.
CSS Rule 3 : System Colors
System Colors Any color property (e.g., ’color’ or ’background-color’) can take one of the following names. Although these are case-insensitive, it is recommended that 284 23 Apr 2009 15:57 User interface the mixed capitalization shown below be used, to make … Continue reading
CSS Rules 2: CSS Predefined Color List
CSS Predefined Color List A is either a keyword or a numerical RGB specification. The list of color keywords is: aqua black blue fuchsia gray green lime maroon navy olive orange purple red silver teal white yellow. These 17 colors … Continue reading
CSS Beginners tablet 1: Comments may not be nested
Comments begin with the characters “/*” and end with the characters “*/”. They may occur anywhere between tokens, and their contents have no influence on the rendering. Comments may not be nested. CSS also allows the SGML comment delimiters (““ … Continue reading →