0

I have an inline-block "circle" element inside <a> tag.

<a href="#" id="map-start-photo-link" class="map-link start">
    фотогалерея
    <span class="circle"></span>
</a>

The behavior is fine in Chrome - hovering and clicking works good. But in IE8 only circles' borders seems to count as link: clicking and hovering in the inner area doesn't work.

here's the project (circles are square in IE8, but it's ok): http://coob.bitbucket.org/

Cubius
  • 1,294
  • 2
  • 15
  • 33

2 Answers2

1

Apply CSS property display: inline-block; to span.

0

Don't mess with z-indexes. I've set z-indexes for header, footer, draggable map and links explicitly (and with positive numbers, just in case) and now it works in IE8.

Cubius
  • 1,294
  • 2
  • 15
  • 33