I have encountered an issue with a recent update on my webpage. Previously, I had multiple divs with the title attribute that displayed information when users hovered over them. However, after adding a gradient background, the titles stopped appearing.
The problem seems to be specific to Internet Explorer 8.
Here is the relevant HTML code:
<div title='' class="mywrapclass">
<div title="More information..." style="width:40px;height:50px" class="myclass"></div>
</div>
And here is the CSS code causing the issue:
.myclass
{
border: 1px solid white;
border-bottom:none;
bottom:0%;
position:absolute;
filter: progid:DXImageTransform.Microsoft.gradient(GradientType="1", startColorstr='#87aaff', endColorstr='#000044');
}
.mywrapclass
{
background-color:White;
position:absolute;
left:58%;
width:32%;
height:100%;
overflow: hidden;
}
How can I resolve this problem and make the titles appear again?