vote up 5 vote down star
7

Hi all,

I'm developing a web application for a new service, starting from Firefox 3.5.

The interface design is tableless, only using divs + CSS & performance-blessed practices.

Now, while being compatible with Safari has taken just a small amount of time, IE is a pain.

My question is: is there anything out there that could be used to speedup cross-browser checking? I already know many points of difference between FF and IE for instance, but a specific tool would maybe help some more.

Could you suggest one, if any?

Thanks,

Scarlet

flag

5 Answers

vote up 10 vote down check

Cross Browser Development

No tool can ever make up for bad behaviour, but they can sure make life easier on you.

That being said, you should really come up with a workflow that let's you optimize for cross-browser compatability in the least amount of work spent. If that means small iterative or large monolithical steps for you, well that is up to you to decide. But generally working against several browsers during development saves you if not time at least a major headache on d-day.

List of tools/resources i find useful

References

Selenium alternatives / Cross Browser Testing / Litmus

link|flag
1  
There is an firebug equivalent for IE as well, called Debugbar.. Not as powerful but helpful in some cases. But it doesnt help you if you dont have IE installed. – Arto Uusikangas Nov 9 at 15:09
I also found this resource that could be helpful in finding all those annoying IE bugz. good-tutorials.com/tutorials/css/… – Arto Uusikangas 2 days ago
I added the link. – Peter Lindqvist 2 days ago
I like the IE6 No More link. – BalusC 2 days ago
yeah me too, but it all depends on what your potential user base is from. – Peter Lindqvist 2 days ago
vote up 4 vote down

This will not answer your question, but just an advice based on my personal experience.

When you are developing for many browsers, the best thing to do is to test simultaneously on all of them while you're coding.

This way you will just have to correct small bugs each time as opposed to overwhelming complicated layout problems.

link|flag
Good advice I think! – Peter Lindqvist Nov 8 at 11:31
Me too, even if from time to time it becomes a bit pesky. Nevertheless it is a good practice. – Scarlet Nov 9 at 10:11
vote up 1 vote down

I don't know of any software that actively check for problems, but Adobe has recently released BrowserLab, which really does speed up cross-browser testing.

link|flag
My experience so far is not that good. WHen I tried to log in it said that my user name or password was incorrect. I had to log in at another adobe site and then return while I was logged in... – Guffa Nov 7 at 22:21
vote up 0 vote down

When you say only using divs and CSS, I hope you're not absolutely positioning everything. That's a sure-fire way to mess designs up in lots of browsers. (Generally the best practice is to use floats.)

You could also try IE7.js to fix a bunch of problems with IE 6-7.

In general I'd suggest developing in IE and one of the standards-compliant browsers side-by-side (Firefox/Chrome/Safari/Opera). And try and keep both the HTML and CSS as simple as possible.

link|flag
vote up 0 vote down

I would also recommend using CSS reset. This way you get a lot of inconsistencies out of the way right from the start.

link|flag
1  
Most of the times I just apply margin: 0, padding: 0; to the asterix* wildcard – richard Nov 9 at 15:35
You're a hacker :-) – HeavyWave Nov 9 at 15:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.