One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds about a 65% market share combined across all their currently used browsers. In the web development community, this number is much lower, showing about a 40% share.
The interesting part of those statistics is that the numbers across IE6, IE7, and IE8 are very close, preventing a single Microsoft browser from dominating browser stats — contrary to what has been the trend in the past. Due to these unfortunate statistics, it is imperative that developers do thorough testing in all currently-used Internet Explorer browsers when working on websites for clients, and on personal projects that target a broader audience.
Thanks to the many available JavaScript libraries, JavaScript testing across different browsers has become as close to perfect as the current situation will allow. But this is not true in CSS development, particularly in relation to the three currently used versions of Internet Explorer.
This article will attempt to provide an exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8. This reference contains brief descriptions and compatibility for:
This article does not discuss:
Therefore, the focus is on differences in the three, not necessarily lack of support. The list is divided into five sections:
body>p { color: #fff; }
The child selector selects all elements that are immediate children of a specified parent element. In the example above, body
is the parent, and p
is the child.
In IE7, the child selector will not work if there is an HTML comment between the parent item and the child.
.class1.class2.class3 { background: #fff; }
Chained classes are used when the same HTML element has multiple classes declared, like this:
<div class="class1 class2 class3"> <p>Content here.</p> </div>
IE6 appears to support this property, because it matches the last class in the chain to an element having that class, however, it does not restrict the class to an element that has all the classes in the chain, like it should.
a[href] { color: #0f0; }
This selector allows an element to be targeted only if it has the specified attribute. In the example above, all anchor tags that have href
attributes would qualify, but not anchor tags that did not have href
attributes.
h1+p { color: #f00; }
This selector targets siblings that are adjacent to the specified element. The example above would target all paragraph tags that are siblings of, and come directly after, primary heading tags. For example:
<h1>heading</h1> <p>Content here.</p> <p>Content here.</p>
In the code above, the CSS styles specified would target only the first paragraph, because it is a sibling to the <h1> tag and is adjacent. The second paragraph is a sibling, but is not adjacent.
In IE7, the adjacent sibling selector will not work if there is an HTML comment between the siblings.
h1~p { color: #f00; }
This selector targets all siblings that appear after a specified element. Applying this selector to the HTML example given in the previous section will select both paragraph tags, however, if one of the paragraphs appeared before the heading, that paragraph would not be targeted.
a:hover span { color: #0f0; }
An element can be targeted with a selector after a :hover pseudo class, similar to how any descendant selector works. The above example would change the font color inside all <span>
elements inside of anchor elements while the anchor is hovered over.
a:first-child:hover { color: #0f0; }
Pseudo-classes can be chained to narrow element selection. The above example would target every anchor tag that is the first child of its parent and apply a hover class to it.
div:hover { color: #f00; }
The :hover
pseudo-class can apply a hover, or rollover state, to any element, not just anchor tags.
div li:first-child { background: blue; }
This pseudo-class targets each specified element that is the first child of its parent.
In IE7, the first-child pseudo-class will not work if an HTML comment appears before the targeted first child element.
a:focus { border: solid 1px red; }
This pseudo-class targets any element that has keyboard focus.
#box:before { content: "This text is before the box"; } #box:after { content: "This text is after the box"; }
This pseudo-element places generated content before or after the specified element, used in conjunction with the content
property.
#box { position: absolute; top: 0; right: 100px; left: 0; bottom: 200px; background: blue; }
Specifying top
, right
, bottom
, and left
values for an absolutely positioned element will give the element “virtual” dimensions (width and height), even if width and height are not specified.
#box { min-height: 500px; min-width: 300px; }
These properties specify minimum values for either height or width, allowing a box to be larger, but not smaller, than the specified minimum values. They can be used together or individually.
#box { max-height: 500px; max-width: 300px; }
These properties specify maximum values for either height or width, allowing a box to be smaller, but not larger, than the specified minimum values. They can be used together or individually.
#box { border: solid 1px transparent; }
A transparent border color allows a border to occupy the same space as would be occupied if the border was visible, or opaque.
#box { position: fixed; }
This value for the position
property allows an element to be positioned absolutely relative to the viewport.
#box { background-image: url(images/bg.jpg); background-position: 0 0; background-attachment: fixed; }
A fixed
value for the background-attachment
property allows a background image to be positioned absolutely relative to the viewport.
IE6 incorrectly fixes the background image in relation to the containing parent of the element that has the background set, therefore this value only works in IE6 when its used on the root element.
#box { display: inherit; }
Applying the value inherit
to a property allows an element to inherit the computed value for that property from its containing element.
IE6 and IE7 do not support the value inherit
except when applied to the direction
and visibility
properties.
table td { border-spacing: 3px; }
This property sets the spacing between the borders of adjacent table cells.
table { empty-cells: show; }
This property, which only applies to elements that have their display
property set to table-cell
, allows empty cells to be rendered with their borders and backgrounds, or else hidden.
table { caption-side: bottom; }
This property allows a table caption to appear at the bottom of a table, instead at the top, which is the default.
#box { rect(20px, 300px, 200px, 100px) }
This property specifies an area of a box that is visible, making the rest “clipped”, or invisible.
Interestingly, this property works in IE6 and IE7 if the deprecated comma-less syntax is used (i.e. whitespace between the clipping values instead of commas)
p { orphans: 4; } p { widows: 4; }
The orphans
property specifies the minimum number of lines to display at the bottom of a printed page. The widows
property specifies the minimum number of lines to display at the top of a printed page.
#box { page-break-inside: avoid; }
This property specifies whether a page break should occur inside of a specified element or not.
#box { outline: solid 1px red; }
outline
is the shorthand property that encompasses outline-style
, outline-width
, and outline-color
. This property is preferable to the border
property since it does not affect document flow, thus better aiding debugging of layout issues.
#box { display: inline-block; }
The display
property is usually set to block
, inline
, or none
. Alternative values include:
inline-block
inline-table
list-item
run-in
table
table-caption
table-cell
table-column
table-column-group
table-footer-group
table-header-group
table-row
table-row-group
p { white-space: pre-line; } div { white-space: pre-wrap; }
The pre-line
value for the white-space
property specifies that multiple whitespace elements collapse into a single space, while allowing explicitly set line breaks. The pre-wrap
value for the white-space
property specifies that multiple whitespace elements do not collapse into a single space, while allowing explicitly set line breaks.
@import url("styles.css") screen;
A media type for an imported style sheet is declared after the location of the style sheet, as in the example above. In this example, the media type is "screen".
Although IE6 and IE7 support @import
, they fail when a media type is specified, causing the entire @import
rule to be ignored.
h2 { counter-increment: headers; } h2:before { content: counter(headers) ". "; }
This CSS technique allows auto-incrementing numbers to appear before specified elements, and is used in conjunction with the before
pseudo-element.
q { quotes: "'" "'"; } q:before { content: open-quote; } q:after { content: close-quote; }
Specifies the quote characters to use for generated content applied to the q
(quotation) tag.
Following is a brief description of various bugs that occur in IE6 and IE7 that are not described or alluded to above. This list does not include items that lack support in all three browsers.
<abbr>
element<select>
elements always appear at the top of the stack, unaffected by z-index
values:hover
pseudo-class values are ignored if anchor pseudo-classes are not in the correct order (:link
, :visited
, :hover
)!important
declaration on a property is overridden by a 2nd declaration of the same property in the same rule set that doesn't use !important
height
behaves like min-height
width
behaves like min-width
line-through
value for text-decoration
property appears higher on the text than on other browserslist-style-type
list-style-image
will not display the image if they are floated@font-face
list-style-type
list-style-image
will not display the image if they are floated@font-face
Some IE bugs not mentioned here occur only under particular circumstances, and are not specific to one particular CSS property or value. See the references below for some of those additional issues.
Louis Lazaris is a writer and freelance Web Developer based in Toronto, Canada. He has 9 years of experience in the web development industry and posts web design articles and tutorials on his blog, Impressive Webs. You can follow Louis on Twitter or contact him using this form.
© Louis Lazaris for Smashing Magazine, 2009. |
Permalink |
122 comments |
Add to del.icio.us | Digg this | Stumble on StumbleUpon! | Tweet it! | Submit to Reddit | Forum Smashing Magazine
Post tags: CSS, internet explorer
十月 2009 | ||||||
一 | 二 | 三 | 四 | 五 | 六 | 日 |
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |