Help:Internet Explorer: Difference between revisions

Content deleted Content added
m <q>: Typo fixing, replaced: the the → the using AWB
m syntaxhighlight
 
(3 intermediate revisions by 3 users not shown)
Line 1:
{{Wikipedia how to}}
{{historical}}
 
Older versions of [[Internet Explorer]] (IE), especially versions 6 and 7 (commonly abbreviated IE6 and IE7) have limitations in their CSS and HTML support. As Wikipedia expands its use of CSS3 and HTML5, support for these old browsers will become more limited, leaving older browsers unable to render a page as the editors intend. A number of specialized fixes for these older browsers are being removed as the MediaWiki software is being updated.
 
Line 22:
IE9 does not show backlinks ({{dummy backlink|a b}}) in the references section.
 
* Accessibility changes to the CSS for {{cite.php}} added <code>user-select: none;</code> to the <code>mw-cite-backlink</code> class.<ref>[https://gitphabricator.wikimedia.org/blobdiffusion/mediawiki%2Fextensions%2FCiteECIT/530ef0ab9ccda7a5adef8547b2f5c644e156e636browse/master/modules%2Fext/ext.cite.css;530ef0ab9ccda7a5adef8547b2f5c644e156e636 ext.cite.css]</ref> This is not supposed to be supported by IE9 but, apparently it causes the content to not display. IE8 and below do not support this property at all; IE10 and above support it properly.
* Fix:
<syntaxhighlight lang="css">
Line 32:
 
==Blank pages when printing==
When printing with Internet Explorer 7, some pages may be blank except for the header and footer; this can be seen in the browser print preview.
{{#section:Help:Printable|ieprintfix}}
* Issues: The style sheets have rules to adjust the line height for improved readability with superscript and subscript text, including references. IE7 apparently has problems with the <code>line-height</code> CSS property. This issue appears to be resolved in Internet Explorer 8 and above.
* Fix:
<syntaxhighlight lang="CSS">@media print {
sup, sub, p, .documentDescription { line-height: normal; }
}</syntaxhighlight>
 
==Image and text spacing==