Productivedreams.com ProductiveDreams - Everything that web designers need, owned by Gopal Raju

A blog to keep you updated on the latest design trends.
RSS

10 CSS properties that ‘were’ impossible to implement in IE6

Personally I hate IE6, and never wanted to support it. Unfortunately, a percentage of internet users still use IE6. Sometimes even customers get insistent about how their page should look in IE6. Anyways, let’s hope IE dies soon!

10 IE6 CSS Hacks

This post is about 10 commonly used css properties that were impossible to implement in IE6. While redesigning ProductiveDreams, I came across a few css compatibility issues with IE6 and had to spend hours searching the solution for each issue.

So I just thought of putting them together to save your time. These css hacks (I would rather call them ’solutions’ since, not all of them are purely css based) solves the major compatibility issues in IE6.

1. Rounded or Curved Corners

As you would know, all modern browsers support border radius. Curved corner is something that was merely impossible to achieve in IE6. Recently I came across an htc file (especially for IE) developed by Remiz from HTMLRemix.com, which solves this issue.

The first thing to do while using htc is to add the correct MIME type for htc behavior on your server. This is REALLY important before you proceed. The following are steps:

1. Go to your cpanel and click the MIME Types link
2. Under MIME Type, add text/x-component
3. Under Extensions, add htc
4. Restart Apache Web server

For more details on how to add MIME type visit Microsoft Support

All you need to do is download the htc from HTMLremix or Alternate Link and include the following code in your CSS.

CSS
1
2
.div_class_name{
3
behavior:url(border-radius.htc);
4
}
5

Jquery Alternative: jQuery Corner a jQuery plugin that creates crossbrowser compatible rounded corners!

2. The popular PNG transparency issue

Every designer would have faced this issue, obviously! Though there are a number of javascript based solutions, I couldn't find anything that supports background position. As far as I know all JS based solutions end up with the same result. This is something that worked flawlessly for me. All other solutions are based on this filter.

CSS
1
2
.class_name{
3
_background:none;
4
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader (src='image_name.png', sizingMethod='scale');
5
}
6

HTC Alternative:If the solution above doesn't work for you, you may try this htc alternate.

Known Issues:
1. Doesn't support CSS Sprites: If you are using sprites, then just forget this hack. Background positions doesn't work with PNG hacks .

If you need background-position support for PNG, then go for DD_belated

The best solution is to use a .gif or png-8. Check out the best way to do this without using hacks!

3. Opacity

This is pretty much straight forward and easy to achieve compared to the other hacks.

CSS
1
2
.opacity_div {
3
  filter: alpha(opacity = 50);
4
}
5

4. Fixed position

All browsers support the css property 'position:fixed', but not IE6. I had to find a solution for this since the social icons in this blog are having a fixed position.

CSS
1
2
* html .fixed_div{ 
3
position: absolute; /* position fixed for IE6 */ 
4
top: expression(104+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px'); 
5
left: expression(15+((e=document.documentElement.scrollLeft)?e:document.body.scrollLeft)+'px'); 
6
} 
7

Just change the top(104) and left(15) values, to position the element.

This method works very well, but you would notice a jerk while scrolling the page. So here goes a fix for that.

CSS
1
2
* html { 
3
background-image: url(image.jpg); 
4
} 
5

All you need is a 1px x 1px image. This might sound weird but it works!

5. Min-width & Max-width

This is simple as well and was already posted on ProductiveDreams

Min-width:
CSS
1
2
.div_class_name{
3
width: expression(document.body.clientWidth < 1000? "1000px" : "auto");
4
}
5
Max-width:
CSS
1
2
.div_class_name{
3
width: expression(document.body.clientWidth > 1000? "1000px" : "auto");
4
}
5

Jquery Alternative: This is an alternative solution for the hack above. JQminmax is a cool plugin which allows you to set minimum and maximum values for both width and height.

6. Hover for non anchor elements

Unfortunately, IE6 supports :hover, only for anchor tags. That means css based dropdowns would not work in IE6. CSShover.htc is the best solution for this. You may download the htc file from xs4all.nl

CSS
1
2
body { 
3
behavior: url("csshover3.htc"); 
4
} 
5

As I mentioned previously, don't forget to add the correct MIME type for htc behavior on your server. This is the key.

7. Min-height & Max-height

Minimum height:

This is not really a hack since it uses valid css.

CSS
1
2
.div_class_name{
3
min-height: 140px;
4
height: auto !important;
5
height: 140px;
6
}
7
Maximum height:
CSS
1
2
.div_class_name{
3
 height: expression( this.scrollHeight > 199 ? "200px" : "auto" );
4
}
5

8. Bicubic scaling for images

One line code that solves the image scaling issue in IE6 and 7. Hats off to Chris Coyier for coming up with this solution.

CSS
1
2
img {
3
 -ms-interpolation-mode: bicubic; 
4
}
5

9. Negative text indent for input buttons

Negative text indent is normally used to hide the text value inside buttons, which lets you use custom background images for them. For some reason, IE doesn't support negative text indent for input buttons. For more details about this issue check out this post

CSS
01
02
input.button {
03
width:114px;
04
height:37px;
05
border: none;
06
background: transparent url(images/button_image.gif) no-repeat center;
07
overflow: hidden;
08
text-indent: -999px;
09
}
10

10. Text shadow

The shadow filter is one of the useful filters for IE.

CSS
1
2
.text_shadow{
3
filter: Shadow(Color=#999999, Direction=135, Strength=5);
4
height: 1%;
5
}
6

87 Comments

Leave Your Reply

  1. Gutscheine says: Wow, not tested yet, but amazing whats possible with these hacks. Only 1,5% are using IE6 on my site. So i think it’s wasting time to optimize.
  2. Mark says: Really handy list

    *bookmarked for future reference
  3. Gutscheincode says: Thanks for this great list of helpful stuff!

    But I will hope IE 6 die soon!
  4. Reduziert says: Awesome and well worth a bookmark. Especially the “Hover for non anchor elements” is something I’d been looking for quite a while.
  5. Gutschein says: Hi all,

    thanks for all the really usefully Informations and good explained 10 Steps.
    Many Regards from Germany,

    P. Gutschein
  6. muhammad Yuqui says: greats, thx a lot, this is help full for me now..
  7. Gutscheinrausch says: Thanks for this. Without your help I would still be trying to solve these issues. Internet Explorer really sucks.
  8. Chris says: Awesome, that is exactly what I was looking for! IE6 sucks! Thanks for sharing.
  9. dannyh says: pure css round corners works fine in ie6 for me maybe you don’t know how to
  10. shweta says: hi, gopal m a newbee in css the all data are useful to me but i can still understand that why IE6 doesn’t support line height in a list & how to solve this problem, if u give the answer i will be highly thankful to you
  11. Rajesh says: I have seen all ten points. Those are very nice and useful to me.

    Thanks
    Rajesh
  12. gautam hans says: IE6 is such a useless browser, most of css doesn’t work on it. I think we shouldn’t use IE 6 at all. These hacks will help a lot as still a lot of people are using IE6 but i donno why?
    Great Post though.
  13. Kartlos Tchavelachvili says: I liked Min, Max Height & Width tips. Thanks man
  14. Aditya Khurana says: Not a big fan of using expressions based solution… mainly because of performance reasons. But overall many keepers from this post
  15. Ozan Kilic says: Thank you! this is a much helpful article. Bookmarked and saved some downloads for the future.. :)

    greetings
  16. Alice says: Thank you! The rounded corners one is really helpful, I always seem to mess things up with jQuery, so the htc hack is great. :D
  17. Benedikt says: Thank you. This is a really helpful resource.
  18. Tom says: Thanks for this. Bookmarked! :-)
  19. Tara says: I’m keen to try the rounded corners hack but the html remix site seems to be down. Know anywhere else I can get this .htc file from?
  20. Kai says: your fixed position hack seems not work, even your example on /workshop/fixed_position vibrates here (mac parallels with xp and ie6). twi fixed items seem not to work at all (second item is scrolling up too). sad!!
  21. Ashent says: Nice list, but unfortunately there are a lot of people like me who simply cannot help but use IE6 when their browser of choice is not compatible. For work, many of my company’s sites will not work with Firefox – this forces me back to IE6, as I would rather toss my machine out the window rather than upgrade IE. Actually, the same thing might happen in either case.
  22. David says: Great list! Thx a lot!

    Double that IE-bashing and the hope for it to die a.s.a.p. but I dont see IE6&XP to go down anytime soon. Guess most people will sit on their cracked/non-updated XP/IE6 machines for at least 5 more years.
  23. Shabu | CSS Pedia says: Added this super post in our database, thanks.
  24. Calgary Graphic Design says: Ahh death to IE6 , one line of CSS at a time! Yes, a very useful list. Thanks!
  25. Tim Marshall says: Good post highlighting ways to get IE to conform however I do question why you would want to use all those .htc hacks.
    Use some of the more fancier CSS display methods including CSS3 and as long as the design still works in IE6 and all the site is visible then that will do. Ask yourself, do things really need hovers and rounded corners for a poorly supported browser. Progressive Enhancements using the latest CSS techniques allowing for graceful degradation in less than capable browsers such as IE6 would be a cleaner method and allow you not to be wasting time supporting all the foibles of ancient browsers.
    • Gopal says: Thanks for your comment, Tim.
      I guess you didn’t read the entire post. This post is for those designers/developers whose clients are insistent. If a client insists, you are helpless.
  26. Ewout says: Great list, especially the bicubic image resizing solution, never heard of but damn handy!
  27. Jono says: Very cool. I tested all of them and about half of them did not work with IE6. The ones that did work were really good that i have wanted to find out how to do. Also just so you know I do not have IE6 installed on my computer i use this: http://www.xenocode.com/browsers/ it is programs you can start without having them installed. VERY VERY GOOD FOR WEB DEVELOPERS
  28. nishad says: g8 tuts… Fixed position got woking… but de .png pblm still remain
  29. ranish chirayil says: great post!!! thankx for sharing
  30. esck21 says: Dude, the first one, I try to open the demo in the IE6, and it don’t show anything : (

    Where are the rounded corners?? :(
  31. Shahin - Rolam Shahin Designs says: One of the most useful blog posts I’ve come across in a long time. Good job mate, real good job.

    P.S. How about increasing the line-height for the post title a little bit? It does look a little…hmm…let’s just say, messy.
  32. Ved says: Your blog is really useful and got a great design! Congrats! Regards from Brazil
  33. Karl says: who ever you are, your a genius…. well maybe! but really, thanks anyway sorted me out big time had problems with fixed positioning and the png’s

    Cheers
  34. Prasanna Jathan says: GHope IE6 will die soon.
    For the PNG transparency issue, The unitpngfix.js[http://labs.unitinteractive.com/unitpngfix.php] script works fine. Because the above CSS will not support W3C standards.
  35. aravind says: Nice post. Really useful
  36. Bijjol says: I guess, you missed on issue, that is for Select elements. When you try to gray out the screen to display modal window, select elements pops above the gray out area. Basically Z-index issue.
    Any solution?
  37. Paul Irish says: There are a couple suggestions in here I take issue with. (But there is also some good stuff… :)

    2. I’ll second Livia’s suggestion of DD_belatedPNG. It’s worked very well and is the best choice of PNG fixes out there.

    4. Fixed position. CSS expressions are deprecated and have huge performance impacts. YUI Performance guidelines specifically recommend against using them. Stu Nichols of CssPlay has the best solution for position:fixed in IE6.

    6. CssHover. This htc has huge performance costs and should be avoided. Most of the time you can a.nav { display:block} and use the a.nav:hover instead of forcing a hover on LI’s.

    7. Min-height hack. I love this hack. It’s a keeper.

    8. Bicubic scaling. This should be attributed to Scott Schiller of Flickr/Yahoo, but as he mentioned in the original article, it doesnt work in IE6. You need to use the nasty AlphaImageLoader if you want a similar effect there.

    9. Negative indent on buttons. In my experience a line-height of something big (99px) is also required for input type=”submit” or similar elements.

    10. Height:1% has some nasty consequences sometimes. It’s a bit cleaner to use zoom:1 to force hasLayout.
  38. netwala says: Thanks Gopal!
    It was pretty useful. I always hated it when I was asked to make it IE6 compatible.

    Cheers!
    netwala
  39. Serj says: Grate list! I was in a need for some info about the fix positioning, thank you very much!
    Still don;t get why microsoft doesn’t want to do something about IE6, but wtf. in some ways I am grateful, thanks to IE I learned how to swear, so thank you Microsoft, Thanks to you I can code and have fun in the same time!!!
  40. nomad-one says: Woo Hoo, awesome list, IE6 bugs being the bain of just about any web design/developer’s existance this is a realy welcome list covering some really crucial aspects of page design.

    Much Appreciated!
  41. max.w says: Nice post, there’s a bunch of stuff here I never knew of.
  42. prafuitu says: Also, a greater line-height on the comments’ text would be nice!… ;)
  43. prafuitu says: Very nice list! I was already familiar with all of them, but it’s a good thing you’ve put ‘em all together in one place.

    However, I’d like to suggest a better solution for transparent PNG, which supports both background-position and background-repeat: DD_belatedPNG by Drew Diller.
    He also offers an alternative way for rounded corners, called DD_roundies, which is a JS library.
    Both solutions are available here: http://www.dillerdesign.com/experiment/
  44. Livia says: I had lots of problems with positioning transparent PNGs in IE6 but this script called DD_belated works flawlessly http://www.dillerdesign.com/experiment/DD_belatedPNG/
  45. David Owens says: Great to have these all in one place.

    @WebDev The trouble with upgrading for a lot of companies is that they have internal tools and intranets which were built to work in IE6. They can’t upgrade without having to replace those which can get pretty expensive.
    • WebDev says: Yes, you are right. I know that too, but there is too many bugs and security exploits in the old XP that must be eliminated. This can be done only by upgrading or changing XP :)
  46. WebDev says: Lol :) So true. However, I hope there is not a long time until IE 6 finally fades out. Even IE users has to update as there is the IE 7 and IE 8. In my opinion, IE 6 will disappear as soon as XP does.
  47. Sravan says: thats a nice find – good tips
  48. Rejis says: Useful tips. Thanks for sharing.
  49. Damian says: Very nice article :)
  50. cheth says: This is cool! thanks for sharing :)
  51. Gopal Raju says: welcome, Thanks for bookmarking it!