W3C link checker

Jul 21

Here's a useful link from the w3c, use it to check the validity of your site links. It is also always useful to see if the sites that you link to are still alive and kicking.

It reminds me I really should write an automated script to check all of my links. But like I have the time.


Filed under:
Standards

Web developer toolbars

Dec 6

Back in Jan 2003 I blogged an entry about IE Booster, the only problem were all the adverts that went with it. In fact now it is called "Site Inspector" and even has a licence price.

That is why this tool needs a shout, it's a Web Accessibility Toolbar for Internet Explorer, and has some useful tools, like validate, resize and CSS manipulation. It is very similar in functionality to the Firefox toolbar for web developers.

Other great tools to aid web development include:
Firebug (FireFox)
WebKit inspector (Safari/Webkit)

Filed under:
Standards

w3c your page is not Valid

Jan 14

The w3c validator fails its own validation.

I decided to check the w3c validator page using the w3c validator check page itself. It failed the check for valid XHTML (Strict).

Im sure by the time you read this and check this link it will be ammended.

Check the w3c validator check page


Filed under:
Standards

More CSS tricks

Sep 25

Try out these rollovers, 3 column alignment and rounded corners all implemented using CSS.


Filed under:
Standards

CSS image rollovers

Sep 1

Petr Stanicek's innovative article 'Fast rollovers, no preload needed' demonstrates how we can speed up CSS image rollovers using one image instead of three separate images to define state (normal, hover, active / visited).

The principle uses the one image and positions it differently depending upon the state of the button. This actually speeds up the rollover and removes the requirement for preloading.

See also these related articles from A List Apart, Sliding doors part 1 and sliding doors part 2 (Published in 2003).


Filed under:
Standards

Float misbehaviour

Sep 1

Eric Meyer shows us how to stop our floats from misbehaving in this article called "Containing Floats".

The article explains how we can prevent float elements from floating outside their parent element.


Filed under:
Standards

Internet Explorer Margin Fix

Jul 11

In Internet Explorer 5.x and backwards-compatible-mode Internet Explorer 6 on Windows platforms, the automatic horizontal margins are not implemented correctly. Setting the various forms of automatic left and right margins has no effect on the desired element. This script will fix the bug in Internet Explorer without any modification to your HTML or CSS, making your pages display correctly. For more details, check out www.stilleye.com


Continue reading
Filed under:
Standards

Netscape 6 and IE 5.5 have their DOM Differences

Jul 10

IE and Netscape have always had their differences, however the latest incarnations have brought both browsers much closer since the 4.0 days.

So what are the differences between Netscape 6's Document Object Model (DOM) and Internet Explorer 5.x's DOM.

A good example is the difference in modeling of the root nodes of the DOM tree, document and documentElement objects. Netscape 6 also models the ownership relationship in a document, while Internet Explorer 5.x does not. Another advantage of Netscape 6's DOM is its ability to model fragment nodes, which Internet Explorer does not support.

Article continued here at webreference.com


Filed under:
Standards

CSS Filters

Jul 8

Use this table to discover if the user agent / browser can cope with the CSS rule, if it doesnt you could use it as a filter to tweak specific styles to certain browsers. (For example in the boxmodel hack).

http://centricle.com/ref/css/filters/


Filed under:
Standards

CSS1 Test Suite

Jul 2

The CSS1 Test Suite is provided as a way for vendors and page authors to test their browser's conformance to the CSS1 specification.

Test suite can be found here.


Filed under:
Standards

CSS - Zen Garden

May 13

Zen Garden is simply a web page designed to demonstrate the use of CSS.

It is hoped that many people (graphic designers) will submit their own designs by only modifying the CSS. There seems to be only a few submissions as yet, and those are by the designer himself. Therefore I thought I’d mention the site here.

Why not download the CSS and start submitting your own designs!

Access Zen Garden here


Filed under:
Standards

CSS Browser Support

Apr 17

Netscape's developers site "DevEdge" has republished Eric Meyers' Mastergrid, a table showing a number of Web browsers and how well they support the Cascade Style Sheet standard. (However there is still no update to include the most important/recent browsers such as IE6, Mozilla and Netscape 7+, Opera 7+ and Safari.

View here


Filed under:
Standards