Monthly Archives: May 2009

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

Posted in CSS, Tips Tagged ,

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.

Posted in Beginners, CSS Tagged ,

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

Posted in CSS, Featured, Rules Tagged ,

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

Posted in Beginners, CSS Tagged ,

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

Posted in CSS, Rules Tagged , ,

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

Posted in CSS, Tips

CSS Rules 1 : ex ,em,px Know the difference

There are two types of length units: relative and absolute. Relative length units specify a length relative to another length property. Style sheets that use relative units will more easily scale from one medium to another (e.g., from a computer … Continue reading

Posted in CSS, Rules Tagged , , , ,

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

Posted in CSS, Tips Tagged ,

gOS error : Virtual PC 2007

Microsoft Virtual PC 2007: An unrecoverable processor error has been encountered. install Suse Linux/Fedora and also gOS to Virtual PC 2007 Type(append to other options ) noreplace-paravirt to boot option This solves my problem.

Posted in gOS, Linux Tagged ,

vb.net htmlattributes example

ASP.NET MVC Code   Example 1. < % Html.BeginForm("Create", "Model", "", "", New With {.id = "CreateForm"})%> Example 2 < % Html.BeginForm("Create", "Model", FormMethod.Post, New With {.id = "CreateForm"})%>

Posted in ASP.NET, VB.NET Tagged , , ,