The following works fine in Chrome and Firefox, and makes the container clickable. In Internet Explorer it is clickable too, but does only change the cursor to indicate so for the inner div, but not either span.
I can fix this with cursor:pointer, but more importantly it does not allow for right click to open in a new tab.
Is there a solution to this problem? Thanks!
<html>
<head>
<style type="text/css">
span{display:inline-block;width:100px}
</style>
</head>
<body>
<a href="/">
<div>
<div>title</div>
<span>text</span><span>text</span>
</div>
</a>
</body>
</html>