Наиболее сложные CSS рендурируют ошибку всех времен (IE9)

Посмотрите на это в IE9:

http://jsfiddle.net/dalgard/n6pdb/show/

Спасование экрана: enter image description here

Прочитайте эти комментарии:

/*
 *  IE9: Upon moving the mouse a ghostly 1px vertical line appears 53px into the
 *  blue area - only works with normalized CSS (!?) and not inside an iframe
 */

#test {
  width: 152px;             /* must be 152px or larger! */
  height: 200px;            /* can be any height */
  border-radius: 1px;       /* must be 1px or larger */
  background-color: #44f;   /* ghost-line becomes invisible with #00f */
}

#test:hover {}              /* removing this makes the line disappear */

#test div {
  opacity: 0;               /* removing this makes the line disappear */
  position: relative;       /* removing this makes the line disappear */
  left: 53px;               /* must be 53px or smaller! */
  width: 10px;              /* must be 1px or larger */
  height: 150px;            /* height of the ghost-line */
}

У кого-нибудь есть мнение по этому поводу ?? Что происходит и как я могу сообщить об этом? Как мне случиться (я знаю, кажется, что я мог бы просто изменить любой из атрибутов в вышеуказанном, однако это не так легко ...)?

10
задан Joseph Marikle 17 September 2011 в 23:25
поделиться