Tagged Questions
The quirksmode tag has no wiki summary.
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 ...
2
votes
3answers
183 views
Help with doctype issues
I am having issues making my footer stick to the bottom of the page in all browsers.
I have the following document structure:
<html>
<head>
</head>
<body>
...
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
3answers
742 views
QuirksMode & JavaScript Implementation
I would like to ask if Internet Explorer in QuirksMode has a different JavaScript implementation than IE in a normal mode (when doctype is correctly defined).
Is it possible that a JavaScript code ...
0
votes
1answer
53 views
Weird iPad Browser Quirk/ CSS Issue [closed]
I'm working on a page (http://oscarspad.co.uk/Gallery/) which uses the Galleria plugin to generate an image browser. All is fine except when the page is viewed on iPads.
In this scenario the page ...
0
votes
1answer
31 views
General Problems With Quirks Mode
I'm working on a large website that has hundreds of pages with headers, footers, pop-ups w/ iframes, buttons, logos, etc all over it.
It's been developed for several years. The entire time there ...
0
votes
2answers
128 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
109 views
Javascript switch from quirksmode to standard
Is there a way to switch a page in quirksmode to standards mode using Javascript?
For example, assuming I have the following page with html in it. I've tried the following.
<html><script ...
0
votes
0answers
159 views
DOCTYPE is not rendered if declared in PHP include?
So far i've declared for example
>test.php
<!DOCTYPE HTML>
<html>
...
and in index.php
>index.php
include 'test.php';
...
Works fine on all except IE8, as far as I know, will ...
0
votes
1answer
489 views
How do I automatically center a div in IE8 in quirksmode?
I am working with IE8 in quirks mode...
I have styles cascading from my Firefox stylesheet which include:
#container {position:relative; width:1007px; margin-right:auto; margin-left:auto;}
...