preload preload preload preload preload preload preload preload preload

Invisible Window Logo

Web Standards Explained.

Posted: 21st May 2007 | by: webhank | in: Blog Posts

We couldn’t have said it better ourselves. We talk about them constantly, but what are web standards? Here’s your answer!

A Challenge…

Posted: 16th May 2007 | by: webhank | in: Blog Posts

This post is by no means an attempt at patting outselves on the back, but an attempt to encourage giving back. Recently, Invisible Window becaue a member of 1% For the Planet, an organization started by Patagonia founder Yvon Chouinard whose members pledge to donate 1% of their business revenues to approved conservation minded organizations. Perhaps 1% For the Planet can put it a bit more eloquently: Mission Statement 1% For The Planet is an alliance of businesses committed to leveraging their resources to create a healthier planet. Members recognize their responsibility to and dependence on ...

Under-utilized CSS selectors

Posted: 14th May 2007 | by: webhank | in: Blog Posts, CSS

In our day to day development lives we often get into a rut when it comes to solving certain problems and forget that other options might exist. Below is a list of some “anti-rut” CSS selectors. clip: If you’ve ever written an application where a user may upload a photo, you know the struggle that can ensue where a particular uploaded image breaks the layout (too long, too wide, etc). The clip CSS selector can help you make that square image you were looking for out of the rectangular upload that your user gave you.Usage: clip: rect(5px, 40px, 45px, 5px) // css code #con ...