NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
IE Box Model... (Score:2)
-Dom
Re:IE Box Model... (Score:2)
If only! In this case it's a float bug. I have the DTD set correctly so IE6 should be using the correct box model, and at this stage I don't care about IE5's totally broken implementation.
The man in the scary hat is a jolly clever chap, and I read his book while stuck in hospital last year - a very useful read indeed. I keep trying to get people to read it. I've not rad it yet, but Eric Meyer On CSS [ericmeyeroncss.com] may also be a goo read.
My problem is that IE5 and IE6 do odd things with floats. Mozilla and Opera do wha
-- "It's not magic, it's work..."
Re:IE Box Model... (Score:2)
-Dom
Re:IE Box Model... (Score:1)
{
width: 300px;
width: expression( '400px' );
}
Re:IE Box Model... (Score:2)
Not seen that. Normally I force [alistapart.com] IE6 into standards mode, and I either don't care about older broken IEs, or use the infamous Tantek Hack [tantek.com].
-- "It's not magic, it's work..."
Cleaning up HTML... (Score:2)
FONTtags and friends, into CSS — even though somewhat buggy.I really ought to look into the upgrades.
Re:Cleaning up HTML... (Score:2)
Tidy [sourceforge.net] is pretty good at fixing bad HTML, as is libxml2 [xmlsoft.org], however they are no good at at de DreamMangling a page, for that you have to do it by hand. However, that job is now done!
Both tidylib and libxml2 can be used from within Perl, so they are also great for on the fly HTML cleaning too. If only it was possible to on the fly upgrade IE users to Firefox or Opera.....
-- "It's not magic, it's work..."
IE? IE who? (Score:1)
How many of us have COMPUTERS that old? (yeah ok there's still lots of them out there, but they all have to be replaced eventually, as they die off from hardware failure or desire to upgrade)
well, let me just sum up my feelings from an html comment I embedded in some client-side code recently. Evil aren't I?
<rant>
A mixture of original hand-coded HTML 4.01, Casc
Re:IE? IE who? (Score:2)
I had forgotten how old HTML4.0 is. What is even worse is that MS co-wrote the damn thing, and you would think that in seven years they would have enough time to actually adhere to the specification they helped to write!
As I said previously, this is ignoring all the other things wrong with IE!
-- "It's not magic, it's work..."
IE hell (Score:2)
<style type="text/css" title="whatever">@import "full_sheet_url" all;</style>
That "all" there is legal CSS 2, implemented in Firefox, but unimplemented in IE, so IE just ignores the whole statement as far as I can tell. Folks, let me know if this idiom doesn't quite work for you -- I just stumbled on it the other day.
Re:IE hell (Score:2)
Another new trick. I suppose it's a generation on from the original
@importhack to protect Netscape 4 and IE 4 from their own failings. Obviously I'd have to check that with recent Opera and khtml based browsers too, but it's another weapon in the armoury.In my case I still have to find out why IE is breaking (float bug I think) and do things to the style sheet to workaround the defect.
-- "It's not magic, it's work..."
Web Designers Call This "The IE Factor" (Score:1)
The IE Factor [stopdesign.com], money paragraphs quoted here.
Re:Web Designers Call This "The IE Factor" (Score:2)
I know the feeling totally. IE is so variably buggy, yet so dominant in the market place. IE is probably the biggest impediment to clean modern web design. As Microsoft has officially stated that there will be no major change to IE until Longhorn, it looks like web design will be held back in the 1990s for another few years, or everyone will try a better browser - there are plenty to choose from...
-- "It's not magic, it's work..."