Standards-schmandards has the extension Fangs for Firefox that creates a textual representation of a web page similar to how the page would be read by a screen reader.
Category: browsers
Tip: Eliminate unwanted whitespace in Internet Explorer list rendering
Sometimes Internet Explorer adds unwanted whitespace and separates list items in unwanted ways. The way to fix this is to remove all the whitespace from the list items in the code. There are two options for how to do this.
The first way is to “break” the closing list item tag like this:
<ul>
<li>list text</li
><li>list text</li
><li>list text</li
></ul>
The second method is to run all the list items together in one string like this:
<ul>
<li>list text</li><li>list text</li><li>list text</li>
</ul>
Additional note: there is information about the cause and cure for this problem at the CSS Creator Forum that doesn’t involve writing mangled HTML code.
Is Browse Happy making a difference?
First sign of malicious code exploiting Windows Jpeg security flaw – vnunet.com describes a new security hole in Internet Explorer involving JPEG images. We hear this type of news almost every day about IE. There are also more and more reports every day that Microsoft is losing users to the safer and more standards-compliant browsers such as Opera, Firefox, and Safari.
I’m wondering how much effect the Browse Happy. Online. Worry Free campaign has had to do with this trend. If you have switched browsers because of the encouragement of Browse Happy, I’d like to hear your comments.
Firefox developer tools
Web designers who have used the Mozilla browser Firefox are very enthusiasic about the developer tools for CSS and JavaScript that it provides as an additional downloadable extension.
Well said explanation of Box Model Hack
Modified Simplified Box Model Hack tells all.
Min-width JavaScript help for IE5 and higher
PVII – Three columns over and easy The source of this page contains a JavaScript that is a solution for the problems caused by min-width in IE 5 and higher. This is a Project VII script.
For more information about using min-width see Quirksmode and W3 Schools.
Making IE Standards Compliant
Dean Edwards was mentioned on Slashdot as having created a stylesheet he dubbed IE7 that makes Internet Explorer W3C standards compliant. Getting slashdotted seems to have crashed his server but if you check back in a few days when things slow down for him, you should be able to see how he did it.