Help:Internet Explorer: Difference between revisions

Content deleted Content added
top: copyedit
<q>: restructure
Line 37:
 
==&lt;q>==
{{tag|q}} is used to mark atext shortas quotation;quotations. CSSIt stylesis theused contentto byformat placingshort itworks in quotation marks in a normal{{cs1}} fontand style{{cs2}}.
 
* IE6 and IE7 do not add the quotation marks, and alsobut style the content in italics by default instead by way of [//bits.wikimedia.org/en.wikipedia.org/load.php?debug=true&lang=en&modules=mediawiki.skinning.interface&only=styles core CSS].
*** Issues: The <code>:before</code> and <code>:after</code> pseudo-elementsselectors, and the <code>quotes</code> property are not supported forin IE7 and below
**Issues:
* Fix: To change the style to normal: {{code|lang=css|q { font-style: normal; } }}
*** The {{plain link|url=//bits.wikimedia.org/en.wikipedia.org/load.php?debug=true&lang=en&modules=mediawiki.skinning.interface&only=styles|name=mediawiki.skinning.interface}} sets the CSS rule <code>q{*font-style:italic}</code>; this uses the [[CSS filter#Star_hack|star hack]] to style {{tag|q|o}} in italics for IE7 and below
*** <code>before</code> and <code>after</code> pseudo-elements are not supported for IE7 and below
*** <code>quotes</code> is not supported as a property for IE7 and below
* Usage: {{tag|q|o}} is used to format short works in {{cs1}} and {{cs2}}
* Fix: To change the style to normal:
 
<syntaxhighlight lang="css">
q {font-style: normal}
</syntaxhighlight>
 
==Testing==