internet-explorer-6

How to style <input type=“text”> in IE6 CSS?

邮差的信 提交于 2019-11-30 11:13:11
Is there any elegant way of applying a certain style to all <input type="text"> elements under IE6? I can do it with some JavaScript, but I was wondering if there was a more elegant way of doing it. Note - I cannot apply a certain class to all textboxes by hand. And I'd like to avoid CSS expressions . AFAIK, IE6 does not support attribute selectors , so I think the answer is no. You'd have to use one of the following: Add a common class attribute to all <input type="text"/> elements. Use JavaScript, as you suggested. Both of which you want to avoid. Too bad. If you happen to be using jQuery,

Bootstrap versions and browser compatibility

醉酒当歌 提交于 2019-11-30 10:52:51
We are currently developing an application that will have to run on older corporate PCs that still have IE6 installed. I have been looking around a bit, but I cannot find a clear answer for the following: is there a link where different bootstrap versions are paired to the corresponding supported browser versions? For example: Bootstrap 1.1 supports IE 6 and up, Chrome, FF, ... Bootstrap 2.1 supports IE 7 and up, Chrome, FF, ... Here is the link to the official docs for Bootstrap versions: http://bootstrapdocs.com/ Looking at Browser support for Bootstrap 1.1.0 it says Internet Explorer 7+.

IE6 issues with transparent PNGs

大兔子大兔子 提交于 2019-11-30 08:00:38
问题 I've gotten used to the idea that if I want/need to use alpha-trans PNGs in a cross-browser manner, that I use a background image on a div and then, in IE6-only CSS, mark the background as "none" and include the proper "filter" argument. Is there another way? A better way? Is there a way to do this with the img tag and not with background images? 回答1: The bottom line is, if you want alpha transparency in a PNG, and you want it to work in IE6, then you need to have the AlphaImageLoader filter

Known issues with gzip and IE6

夙愿已清 提交于 2019-11-30 07:04:55
I read that some versions of IE6 have known issues with gzip compression, but I have found little explanation as to what these issues are. What are the known issues with gzip compression and IE6? Grant Wagner The problem is described in this answer . If you are using Apache there is information at the Ultimate IE6 > Cheatsheet: How To Fix 25+ Internet Explorer 6 Bugs on how to work around it: Some versions of IE6 prior to the XP SP2 update may have trouble with files that have been served using GZip compression. Fortunately, Seb Duggan found a IE6 GZip bug solution using ISAPI_Rewrite for

Testing IE6 with Firebug Lite

半世苍凉 提交于 2019-11-30 05:27:13
问题 I'm using IEtester to test in IE6, because the client want the page to be seen in it. Till a few weeks ago, I could work as good as possible using the firebug lite Stable Channel in IE6 on the IETester. Now I can't! I don't know what changed... and I don't know how to work now, how to test the CSS online etc. I have tried all the posibilities in http://getfirebug.com/firebuglite#Stable . Using the live link of each one, using the favorite button and/or downloading the firebug and adding a

Strategy for Fixing Layout Bugs in IE6?

核能气质少年 提交于 2019-11-30 04:33:40
问题 Generally, what's the best way to tackle a layout bug in IE6? What are the most common bugs or problems that one should look for when trying to figure out why your page suddenly looks like a monkey coded it? 回答1: First Things First Get yourself the Internet Explorer Developer Toolbar. It's a life saver and works great with IE6 and/or IE7. It's no replacement for Web Developer Toolbar or Firebug for Firefox, but it's better than nothing. Know Thy Enemy Read up on the quirks of IE —

debugging javascript for IE6

风流意气都作罢 提交于 2019-11-30 03:43:28
firebug is quite useful tool that I can't think myself living without it. I also downloaded the js file that helps you get similar functionality when using IE6 hoping it would help me resolve some issues, however, the messages I receive are not quite friendly such as: "Expected ':' (default2.aspx,16)" - on line 16 there is nothing that can possibly expect a ":" or "Object doesn't support this property or method (default2.aspx,198)" on line 198 nothing interesting that can require any support for anything. my site looks like a different web site in IE6.. most of the css doesnt work, some of the

Styling a hr for internet explorer

我的梦境 提交于 2019-11-30 02:38:00
问题 Hey, in my quest to create as image light a site as possible, I'm looking to create two tone hr's. I've achieved this in modern browsers, but want to achieve the same effect in ie6 and 7. The current code I am using is hr { border-bottom:1px solid #FFFFFF; border-top:1px solid #dcdcdc; clear:both; height:0; border-left:0px; border-right:0px; } I've tried, with no success to make this work in ie6 and 7 without having to target the browsers specifically. Any thoughts? (Heres my current project

IE hanging, using 100% of the CPU

拟墨画扇 提交于 2019-11-30 02:32:07
I have a web application, which in the course of a normal interaction, hangs IE. By "IE being hung", I mean that IE doesn't respond anymore and using 100% of the CPU. The only to get out of this state is to kill the IE process. About the app: It loads only one page in the browser, communicates with a server with Ajax queries, and updates the DOM. I can reproduce this with both IE6 and IE7, but not Firefox or Safari. I am wondering if anyone has seen this already, and if there are a few known cases that can get IE into this hung / using 100% of the CPU state. Use WinDbg, http://www.microsoft

One fix for all IE6 problems [closed]

痴心易碎 提交于 2019-11-30 00:28:41
Is there a one fix solution for all IE6 problems? One HTC/jQuery file that fixes IE6 problems like PNG, background position, hover, (even) rounded corners... I'm just too tired to look for all fixes, test them and put them in separately. Yousf Don't listen to people who say to you stop supporting IE6. I prefer not to enable all features for IE6, as it will requires infinite time. Just make sure that your website degrades gracefully . If your website doesn't work at all in IE6, you will lose several internet users . Specially for websites targeting Aunt Marge . The script which vise proposed is