vote up 1 vote down star

Is there is any way to write html and css with out using css hacks which will work in all the browsers including ie6? Only using with div and not with table? I want to have the page both html and css with w3c compatible.

flag

0% accept rate
2  
You have to be more specific. What design are you trying to implement? The wholy grail? – Jan Aagaard Jul 17 at 9:55
whats a css hack? – David Archer Jul 17 at 9:57
@David Archer: I think he means some CSS quirks like the * html selector for IEs of version ≤ 6. – Gumbo Jul 17 at 10:01
right ok, thanks :-) – David Archer Jul 17 at 10:01

7 Answers

vote up 3 vote down

Short answer: Yes.

Here's an example:

/* Start CSS */

/* End CSS */

As to if it possible to achieve the specific result you want, then … maybe — but you have to tell us what that is first!

link|flag
vote up 2 vote down

The easiest way is to use conditional comments and have an additional stylesheet specifically for problem versions of IE6. It does mean you have special cases, but not really hacks.

link|flag
vote up 1 vote down

It has come to the point in time where one must simply resolve to no longer support IE6. It's tough, but there you have it.

There's no "right way" to do hacks. That's what "hack" means.

link|flag
I don't think so. I just looked at the wiki for browser share, en.wikipedia.org/wiki/Usage_share_of_web_browsers/…. I get ie6 still having about 6% share, almost as much as safari – David Archer Jul 17 at 10:01
But while Safari's share is increasing, IE6's share is decreasing. And stopping support for it, will only make it decrease faster. (hopefully) – peirix Jul 17 at 10:05
fair enough :-D – David Archer Jul 17 at 10:20
+1 - Not always appropriate for all clients, but for 95% of websites, yes. – Kirk Broadhurst Nov 12 at 1:47
vote up 0 vote down

In some cases yes, but often not. The one thing that seems to always end up as a problem is the lack of min-height in ie6.

link|flag
vote up 0 vote down

It completely depends on the design.

What exactly are you trying to achieve?

link|flag
vote up 0 vote down

Keep IE6 from going into Quirks mode and you won't encounter too many problems. You may also want to consider using a CSS Reset, although sometimes you just can't avoid having to write some IE specific hack to have it look good... What exactly is your problem with using them?

link|flag
vote up 0 vote down

I would say that in general, yes, this is absolute possible to achieve. But you will probably have to make som comprimises on how advanced your layout is going to be, or on how well you will support older browsers like IE 6.

If you are new to this field I would install the Html Validator add-on for Firefox and surf around the web, to get an idear of what pages validate 100 % and the see what layouts they have used.

link|flag

Your Answer

Get an OpenID
or

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