You are currently browsing the Ben’s blog weblog archives for November, 2004.

CSS3 Transparency

November 25, 2004

CSS3 is still a work in progress but I’ve been playing aroud with it nonetheless. You can probably tell that I think that CSS3 transparency is really, really cool. When it is fully supported it is going to allow for so much design flexibilty without having to use a single image.

If you are using a Mozilla based browser or Safari then the background of this post should be a transparent red. If you are using Internet Explorer you will only see a solid red.

If you are wondering how it is done then all you need is this:

#blah
{
opacity: 0.5;
}

It is worth noting you can do the same in IE with a bit of proprietry code which only IE will see.

#blah
{
opacity: 0.5; /* everything that supports CSS3 */
filter: alpha(opacity=50); /* IE */
}

You can decide if that is a good idea or not. :)

Filed under HTML/CSS

Firefox 1.0 - Finally!

November 11, 2004

The wait is over. Get Firefox 1.0

Finally Firefox has reached its full release. Now we can officially push the use of this browser to our friends, family, workmates and even network admins.

While I love and fully support Firefox and its cause it is worth remembering that there are other browers out there that are excellent too.

Random articles

Well written words

May 10, 2005

The Woman of Words needed a website to help her find some freelance work.
The site is about as plain vanilla as they come but my rationale was that when you are promoting someone who works with content their site should be as transparent as possible to ensure that nothing detracts from such content.
Incidentally the site [...]

I really thought web development had moved on from this sort of thing…

August 24, 2004

I was told to use IE when trying to visit a govt website today. Firefox and Safari users are told to use IE instead.
A colleague questioned the site’s creators on this method and was told due to accessibility reasons it was best to use IE. Isn’t that sort of philosophy completely against the entire notion [...]

A flexible approach to accessibility

February 14, 2007

Accessibility is now commonplace. Designers, developers, business owners and even advertisers are now seeing the business benefits of accessible websites.
Eyes used to glaze over when we mentioned accessibility. Now those same eyes are passionately telling us all about it. Accessibility is now as important as interaction, branding and aesthetics and fortunately today we can have [...]