Search Content

Articles Categories


Advertisements

Partners


Blog Tags


Popular Articles


First-child issue
2008-05-22 02:18:22

This pseudo-class matches an element only if it’s the first child element of its parent element. For instance, li:first-child matches the first list item in an ol or ul element. It doesn’t match the first child of a list item. Requires Windows Internet Explorer 7 or later but altho there is a way to make it internet explorer 6. .  Read more

Posted into CSS / 0 comments »

fixed position for msie6 with no hacks
2008-05-22 01:55:47

An element with position: fixed is positioned at the specified coordinates relative to the browser window. The element's position is specified with the "left", "top", "right", and "bottom" properties. The element remains at that position regardless of scrolling. Works in IE7 (strict mode)  Read more

Posted into CSS / 0 comments »

Attribute selector issue
2008-05-22 01:25:46

Attribute selectors have two parts. The first part is a selector that identifies an element - it might be a type selector, or a more specific kind of selector such as a descendant selector. The second part specifies a condition for the attributes of the element.  Read more

Posted into CSS / 1 comments »

Simple Hover for ie6
2008-05-21 08:13:48

Simple Hover for ie6 for every elements. Most modern browsers support the :hover selector for any html element. This is cool, because it enables you to, for instance, apply a mouseover effect to table rows using only CSS. IE however, with a market share of > 90%, does not natively support :hover on elements other than links , rendering the entire :hover concept useless. Or does it?  Read more

Posted into CSS / 0 comments »