When you want to compress your CSS files, heres a list of some free online CSS compression tools. Of course I am partial to my own CSS Compression Tool.
Posted on 11 July 2011.
When you want to compress your CSS files, heres a list of some free online CSS compression tools. Of course I am partial to my own CSS Compression Tool.
Posted in CSSComments (1)
Posted on 20 June 2011.
If you are still creating list data using table, look below and compare on how to make your life easier with HTML dl, dt, dd tags.
Posted in CSS, HTML - XHTMLComments (0)
Posted on 12 May 2011.
jQuery is one popular Javascript library, and for good reasons! It’s easy to use, flexible, and most of all there’s a lot of jQuery tutorials and plugins available out, they are making the creation of dynamic effects much easier without using fx. flash. jQuery has become one of the most used JavaScript libraries today and can be found in the core of popular products like WordPress, joomla and Drupal.
Posted in HTML - XHTML, JavaScript - AjaxComments (0)
Posted on 10 May 2011.
Many moons ago, we create the first set of super awesome buttons. They worked great with any background color and allowed us to turn any anchor or button element into a sexy call to action.
Posted in CSSComments (0)
Posted on 15 April 2011.
The CSS property pointer-events allows authors to control whether or when an element may be the target of a mouse event. This property is used to specify under which circumstance (if any) a mouse event should go “through” an element and target whatever is “underneath” that element instead. Read the full story
Posted in CSSComments (0)
Posted on 22 March 2011.
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.
Posted in CSSComments (0)
Posted on 10 March 2011.
CSS pseudo-elements are used to add special effects to some selectors.
Posted in CSSComments (0)
Posted on 10 March 2011.
CSS pseudo-classes are used to add special effects to some selectors.
Posted in CSSComments (0)
Posted on 16 February 2011.
The CSS to disable resizing for all textareas looks like this:
textarea {
resize: none;
}
Posted in Flash, HTML - XHTMLComments (0)
Posted on 15 December 2010.
<input id=”email” name=”email” placeholder=”insert email” />
input::-webkit-input-placeholder {
color: red;
}::-webkit-input-placeholder {
color: red;
}:-moz-placeholder {
color: red;
}
Posted in CSSComments (0)
Posted on 14 November 2010.
Creating equal-height columns with CSS is sometimes a bear. But who needs the hassle of faux columns, “clear” divs and the rest? With this bit of jQuery, you can easily equalize the heights of any group of elements.
Posted in JavaScript - AjaxComments (0)
Posted on 25 October 2010.
Simply put it is a list of definitions. For the unabridged version read the relevant section in the HTML specification. Basically a definition list is composed of three HTML elements and some text. These are the <dl>, <dt> and <dd> elements.
Posted in CSS, HTML - XHTMLComments (0)
Posted on 27 September 2010.
HTML
<div>
<img src=”images/dog-over.gif” alt=”Dog” />
<img src=”images/cat-over.gif” alt=”Cat” />
<img src=”images/mouse-over.gif” alt=”Mouse” />
</div>
CSS
.preload{display:none;}
Posted in CSS, HTML - XHTML, ProgrammingComments (0)
Posted on 11 September 2010.

“Yet Another Multicolumn Layout” (YAML) is an (X)HTML/CSS framework for creating modern and flexible floated layouts. The structure is extremely versatile in its programming and absolutely accessible for end users.
Posted in CSSComments (0)
