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 »