Tagged Questions
The ie-hack tag has no wiki summary.
11
votes
18answers
1k views
How are programmers tackling ie6 bugs these days?
I have been using dean edwards ie7/8 script. Not sure if it's my implementation or not but sometimes I would experience ie6 issues that weren't quite fixed or required special handling which meant I ...
4
votes
3answers
2k views
CSS method to include IE6 hacks
CSS has @import, right?
IE6 understands *html selector hack, right?
Is it possible to combine them like
//*html @import url(ie6hacks.css);
or, possibly,
//*html { @import url(ie6hacks.css); }
...
3
votes
2answers
256 views
css absolute position inside relative position not overlapping
Hi I've been having problems trying to get my website to be crossbrowser..
in IE6 I have a container with relative positioning, and inside there is a absolute div, which has negative top and left, but ...
3
votes
6answers
290 views
What is the best solution for using transparent PNGs in Internet Explorer 6?
Lack of proper PNG support in IE6 is a well-known issue, with several solutions. There does not appear to be a clear best accepted practice or method.
What do you propose the best solution is, and ...
3
votes
2answers
364 views
using #IEroot for ie-targeted styling?
Has anyone been able to succesfully use the IE CSS hack #IEroot? I stumbled upon it from this article but it doesn't seem to work for me.
I'm trying to fix/hack the inline styling bug to produce li ...
3
votes
3answers
5k views
Embed xsl into an XML file
I'm trying to embed an xsl into a XML file. The reason for doing this is to create a single file that could be moved to different computers, this would prevent the need to move the xsl file.
The ...
2
votes
2answers
431 views
.png images not rendering correctly in IE7, IE8
They look great in FF, Safari, but the social media icons don't render correctly in IE.
http://www.erisdesigns.net/STAGE/ED1.3/
Is this an IE problem, or something to do with how I'm creating the ...
2
votes
3answers
1k views
IE 6 and the multiple button elements all sending their name & values
When using multiple button elements in a form, I realised that IE7 sends the innerHTML instead of the value of the button. All good I thought, I'll simply change my PHP code to this
<?php
if ...
2
votes
4answers
4k views
IE adds extra top-margin to every li-element
I am currently doing IE-hacks on a website I'm working on:
http://www.timkjaerlange.com/wip/co2penhagen/
I got a problem with this unordered list. IE seems to add extra top-margin for every ...
2
votes
5answers
857 views
Help me work around these two IE6 layout bugs
My webpage is suffering from two IE6 rendering bugs. Each of them have workarounds, but unfortunately said workarounds are incompatible with each other.
Here's a minimized test case. The behavior in ...
1
vote
3answers
59 views
IE Hack how to make IE to skip/avoid from reading a line in the style sheet
Is it possible to make Internet Explorer skip or avoid reading a line in the CSS stylesheet?
I'm mostly concerned with IE8, but interested in solutions for any version.
1
vote
5answers
95 views
CSS rendered differently in different browsers
I have a problem with css rendered differently in browsers, in IE to be specific, thought I could ask here for help, hopefully you can help me out with this : ))
my website is ...
1
vote
2answers
55 views
CSS not affecting that is written for IE browser only
Why I am not able to apply an css that is for IE browser only,
I am trying to do it as below with in-page css block.
<style type="text/css">
<!--[if IE]>
body a ...
1
vote
3answers
1k views
jQuery css() function won't apply IE hack attributes
I'm trying to apply an inline-block style to an element (a div to be specific). And in order to achieve this in IE you have to use a hack:
$('#element').css(
{
'display' : ...
1
vote
1answer
188 views
Strange IE7 borders behaviour
my website looks ok in all browsers expect for IE7 I have lot of issues with this browser. Below is the image with which I have problems :
I made a pagination which has a problem with IE7, the ...
1
vote
1answer
2k views
Can you tweak the left and right padding on an HTML input button?
The longer an input button's text (value) is, the wider the left and right padding seems to get (IE). Explicit CSS padding seems to have no effect. Does anyone have a hack for this?
0
votes
2answers
29 views
Chrome thinks it's IE and is evaluating conditionals
Maybe I misunderstand how CSS Conditional Comments work, but I thought the bit in the middle of the conditional would only show up for IE... however Chrome and Firefox are both evaluating it, and ...
0
votes
1answer
46 views
How to load different scripts for different versions of IE?
I use these scripts to repair the errors in IE (Hacks).
There is one for each version.
I know that everything has IE9.js IE8 and 7 but would like to load
only the necessary script to that ...
0
votes
1answer
25 views
Sidebar didnt show in IE 7 and 8
Hi I have problem with "sidebar" ( green in left on page... with text "Novinky a nepřehlédněte")
My problem is: In Firefox, g. Chrome, etc... works good, but in IE 7 and 8 didn't show it.
Page: ...
0
votes
3answers
70 views
Why the misspelling in this IE CSS hack?
Can anybody explain to me why the width attribute in this particular IE hack is misspelled?
* html #container a.slided {
width:91px;
w\idth:93px;
}
btw, here's the link from where I've ...
0
votes
1answer
616 views
parsing CSS with Java
I need to parse CSS files in Java, and have tried using the Batik and CSSParser libs with success. The issue I am having is that when I run into IE hacks, I loose the formatting; it appears to me that ...
0
votes
2answers
378 views
What kinds of css hack for IE do you know? [closed]
I know these so far:
*width:to hack all IE
_width:to hack IE6 only
Can you guys continue?
0
votes
2answers
258 views
Valid IE6 css hacks?
Select all the CSS hack(s) that IE6 can understand for class red
<p class=”red”>text</p>
<!—[if IE 6]> .red{color:red}>![endif]-->
.red{_color:red}
.red{*color:red}
* html ...
0
votes
3answers
4k views
Is there any way to modify the HTTP headers for IE6?
I need to be able to modify the HTTP headers for Internet Explorer for testing purposes.
Basically, I want to achieve the exact same thing that the Modify Headers plugin for Firefox does.
0
votes
2answers
2k views
CSS: How can I overcome negative margin and absolute position issues in IE6?
I'm using absolute positioning and negative margins (with top: and left:) to position logos and other such things in my website. I'm aware that IE6 has problems with negative margins and absolute ...
0
votes
1answer
3k views
How to stop IE “moving” text around within a <div>?
Humbly asking for help with (of course) IE.
I have a div that is a simple background color block (#greenback) and it contains two other divs.
The first (#billboard) is some centered text and the ...