Handling Invisibility



CSSAlthough it may not be obvious at first, invisibility is used everywhere on the web. Every time you use flyout menus, popup windows, dropdown menus or similar types of navigation, the odds are that you've just seen alterations in visibilty at work. Knowing how to control the visibility of elements on your page is a critical skill to have. There are a few different ways to tackle this in CSS, we'll go over them.
Read more...

An Overview of Acid2



Acid2 Smiley Face
Acid2 is a test case designed by the Web Standards Project to identify web page rendering flaws in browsers and authoring tools. We'll take a brief look at the standards-based test.

Read more...

Loading Stylesheets in Firefox



I ran into an odd issue with loading an external stylesheet with Firefox recently. Using a regular import style command( @import URI;), the stylesheet failed to load, but only in Firefox-Internet Explorer had no problems.
Read more...

Getting the BODY flush



Most browsers place a bit of space at the top of your page and in the left margin. This space exists even if you have code right against your opening BODY tag. Using CSS, you can force your content to be flush against the top left of your page.

Read more...