Tagged Questions

6
votes
1answer
287 views

IE9 renders a white line in the bottom of the page

I recently noticed in several webpages, and some of my own, that when they are displayed in Internet Explorer 9, when its not on Quirks Mode, it renders a white line, about 1px, in the bottom of the ...
6
votes
3answers
132 views

is quirks mode legit?

I was on vacation without access to my good friend Internet Explorer, and I threw together a pretty complete web app. When I got home, I was surprised and encouraged to see that my site was working in ...
4
votes
1answer
67 views

CSS Sprite Button Using Table… Can't get rid of line breaks after table in IE (quirks mode)

I am creating a css button using the following image... This is the background of a table.. the text for the image goes inside td blocks. You can see it in action here, please view source to see ...
3
votes
1answer
2k views

What throws Internet Explorer into quirks mode?

I have created a webpage (http://www.snow4life.yum.pl) that was rendered properly in firefox, chrome etc. Of course dumb IE complicated things, because it enters quirk mode automatically, even though ...
2
votes
1answer
103 views

IE quirks mode: width: auto

The problem I've encountered is - in IE on a floated element width: auto; does nothing - I've got to set up the width automatically for ie(quirks mode). How can I set the width automatically in IE ...
2
votes
2answers
330 views

Internet Explorer form styling problem in Quirks Mode vs Standards Mode

I have switched from Quirks Mode to Standards Mode (HTML 4.01 Transitional), and have noticed that in IE7 and IE8 all form elements are now styled differently than they have been in Quirks Mode. In ...
2
votes
2answers
490 views

height:100% problem in IE7, not in FF

I want to display a page with no scrollbar (height:100%). I have read suggestions to add this argument to html and body. But it does not work as I expect. In FF indeed I do not see a scrollbar. But in ...
2
votes
3answers
245 views

Is there a way to condition a CSS styling to execute only on IE quirks mode?

I want to write a cross-browser widget, to integrate both to IE standard and quirks mode pages (FF is easy of course). Since I want to write the styling only once I would like to condition some ...
2
votes
1answer
548 views

Is there a way to avoid IE7 quirks mode while rendering XML + CSS?

I've got some DocBook documentation styled with a CSS xml-stylesheet declaration. It looks great in Firefox, but IE7 doesn't seem to understand the CSS child selectors (e.g. section > title { ... ...
2
votes
2answers
1k views

How to make XHTML “table” with fluid table rows

Basically i want to be able to make a a grid of boxes, where i can align text at the top middle and bottom of each box, and have the boxes on the same row resize when text in another box on its row ...
1
vote
3answers
75 views

IE8, HTML5, and combined classes ala .class1.class2{}

I'm making a responsive site and periodically do stuff like this: .someclass {} .someclass.with_context {} IE8 doesn't recognize the second class. IE9 does. I'm using the HTML5 doctype and it's ...
1
vote
2answers
109 views

Quirks Mode & IE8 Problem

I have a very strange issue regarding only IE8 + Windows Vista, the error is very strange, I'll use some example names. I have 2 pages, page1.html and page2.html, when opening both typing the address ...
1
vote
3answers
74 views

How to have a box increase its size based on its content?

Consider a page (full source below) where you have: A containing div, styled so its border is visible. A contained box, which content can't be made smaller than a certain width. Here we'll use an ...
1
vote
0answers
157 views

underscore in beginning of css ID in IE9 quirks mode does not register

I have a dynamically loaded CSS file that contains a css line with an ID like this: #__my_css_id{ width: 100%; height: 100%; left: 0px; top: 0px; position: fixed; background-color: ...
1
vote
2answers
206 views

Run quirks mode in one frame and standards mode in another?

I have an old application that uses frames (not iframes) was was written back in the IE6 days so it runs in quirks mode. Is it possible (Using IE 7 or 8) to have one frame still in quirks mode and ...
1
vote
5answers
126 views

Which doctype do I need?

I'm having an issue using the default VS doctype of <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> On my page I have a ...
1
vote
3answers
262 views

What is Quirks mode in IE8 Developer toolbar?

I am wondering what is Quirks mode in IE8 Developer toolbar? Why page rendering is different in Quirks mode than in IE8 standard mode?
1
vote
2answers
423 views

Is it possible to get IE7 out of quicks mode without using a DOCTYPE?

In this particular situation, I do not have a choice about the DOCTYPE. I cannot use one. It's a weird situation, but it is what it is. We have some CSS which uses child selectors ("p > a > span", ...
1
vote
2answers
172 views

Adding a class to an element in quirksmode

I try to add a class to a td-element using javascript with the internet explorer 8 in quirks-mode. That seems to work, because I can see the added class when I view the source, but my css doens't ...
1
vote
1answer
155 views

List of everything that doesn't work correclty in quirks mode?

Does anyone have a complete list of html, javascript, and css that is buggy in quirks mode (particularly IE quirks mode)? I have checked out the quirksmode.org list at ...
1
vote
1answer
243 views

How do I keep divs from resizing in IE6?

Here's my markup (live repro): <body> <div style="text-align:center">header <input class='datepicker'/></div> <table><tr><td>really wide ...
0
votes
4answers
37 views

IE <DOCTYPE html> defaults to quirksmode

I'm making a wordpress theme, and in IE, on my homepage of the theme, everything is aligned left, but everything that should be centered is centered when viewing a page or post. I have tried cutting ...
0
votes
0answers
25 views

Getting IE7 to render using standards AND quirks box mode

I'm a big fan of IE's buggy box model, and I'm really glad to see that in CSS 3 the box model is something that we can specify. So my question is: Can I get IE7 to keep it's best standards but ...
0
votes
4answers
60 views

Argh! Last minute Browser/CSS Quirk in Firefox - can anyone help?

So I started tweaking the html/css of this page. Nothing fancy as far as I can see. Now it looks completely wrong in Firefox (see for yourself) and fine in every other browser I can think of. The ...
0
votes
0answers
36 views

Safari Quirks Mode: Table takes up entire width of parent.. why?

I am creating a css button using a table. The button is working fine in Firefox and IE (quirks mode). Unfortunately there is an issue with Safari's quirks mode. First a little background.. This is ...
0
votes
2answers
126 views

IE Quirks Mode - border-right not showing up

I'm designing a navigation bar that HAS to run in IE Quirks mode (i.e. it can't have a DOCTYPE tag at the top). It also needs to work in Firefox and Safari (quirks mode for safari as well). My ...
0
votes
3answers
58 views

Center page in IE

I am trying to center page on IE. If I force quirk-mode by adding <!-- some comment --> before DOCTYPE declaration margin: auto; doesn't work properly and page is adjusted to the left. If I ...
0
votes
2answers
89 views

Dealing with CSS Shapes and IE Doctype

I have been working on a jQuery plugin that involves CSS Shapes. The issue I have been coming across is that the CSS shapes do not work in IE* if there is no DOCTYPE declared. This will be my first ...
0
votes
0answers
62 views

<th> will not scroll horizontally with the rest of the table in IE8 in quirks mode

I have a bug in my program's user interface which can only be recreated in browser mode IE8 and Document type "quirks mode". I have never usually have to work with html/css so I am a little lost. My ...
0
votes
5answers
93 views

Using CSS, How can I stack two spans between two floating divs?

At the top of a page I've got two divs, one floated to the left and one to the right. I can place text with a border between them, however, I now need to stack two such areas of text between them. ...
0
votes
0answers
50 views

How can I set margins relative to font-size (em) in Quirksmode?

The problem is difiicult to explain but should be immediately clear when looking at the code I placed at jsfiddle. The code is working in Chrome, Safari, Firefox and Internet Explorer in ...
0
votes
2answers
113 views

In quirks mode is it possible to have img's resize to their containing table cell?

This may seem like a blast from the past but due to project constraints I am stuck with quirks mode and tables... The tables that i'm dealing with have a single image in each cell where all the cells ...
0
votes
2answers
227 views

How to render a div 100% wide in Internet Explorer Quirksmode

I have a div in an iframe. The div is supposed to render at 100% width. Looking at the document not in an iframe, the div does indeed render at 100%. When in an iframe however, it renders at 90 - 95%. ...
0
votes
1answer
120 views

Why does my page break horribly in standards mode?

My page is perfect with a doctype, and breaks horribly when one is applied. (More specifically, it breaks with any HTML4 doctype. An HTML3 one works fine, but that's clearly not acceptable.) As is ...
0
votes
1answer
162 views

position: absolute to be absolute to the browser/window

It's my understanding that position: absolute is absolute to the first parent who has a non-static position. If no parent has a specified position, then it will be absolute to the browser/window. ...
0
votes
3answers
156 views

How do I know if Quirks mode was triggered within IE6?

I read that if the DOCTYPE is not corectly set IE6 will enter Quirks mode. I have given a document HTML 4.01 Transitional, but how do I know if IE6 triggers Quirks mode or not?
0
votes
1answer
251 views

Width of absolute positioned DIV in IE quirksmode

I am working with a web application that is designed to run on IE quirksmode (it was initially designed a few years ago). I was trying to do something with absolute positioning in it, but it did not ...
0
votes
2answers
63 views

Weird IE6/IE layout bug

I've had quite a few problems with IE6 and our website. http://www.sweetlets.com/w/solutions/click-stream/features/ At the very top the teaser boxes have scrollbars in IE6, but not IE7, IE8, FF or ...
0
votes
3answers
651 views

IE7 CSS Z-Index issue in quirks mode

I've been trying to figure this out for over a day now, so any help would be appreciated. I have a Suckerfish menu that's made up of ul/li's. I'm trying to add some top down scroll indicators to my ...
0
votes
4answers
665 views

Problem with IE Quirks Mode - Div with fixed height expanding

I'm having a weird problem with IE8. Page DOCTYPE is QuirksMode and I CANNOT change it (I wish I could, but there's no way at this time). Widths are hacked to fix the difference of box modem ...
0
votes
1answer
123 views

Is there a way I can tell if IE7 is rendering a page in Standards mode or Quirks mode

I'm having a bit of trouble w/ some CSS on a page. It's valid CSS and Strict HTML. It renders fine in every* browser except for IE (I have only tried 7). Is there a way to tell if it's rendering the ...
0
votes
1answer
269 views

Quirks mode rendering problem

I have the following html code snippet :- <html> <head> <style> body ul { margin: 0px; border: 1px solid black; padding: 0px; ...
0
votes
3answers
233 views

Why Xhtml 1.1 goes into quirk mode?

i'm not using I'm only using this dtd as a first thing in a page? which has no problem to render strict mode. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
0
votes
4answers
906 views

IE8 not accepting multiple classes in quirks mode?

I'm running into a situation where IE8 appears to be dropping CSS selectors. I find this hard to believe, but I can't figure out what is happening. In a css file I have this declaration: #srp ...
0
votes
2answers
1k views

Get IE6 quirks-mode position:absolute rendering in standards mode

I have an absolutely-positioned navigation on my menu that is sent off to the left side.* #menu { position: absolute; display:inline-block; /* I can hasLayout? */ top: 0; left: 0; ...