If some kind soul who sometimes uses opera on windows could check this for me, I would really appreciate it.
The problem is using a list-image with hover in opera causes a funny as per the screen image.
It works until I hover over the last item, then the image vanishes and the standard disc appears.
I have a workaround, but would like to know for sure if this is an opera prob or just my local setup.
(I have not uploaded the bullet images, you can use any two icons to test).
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css">
ul {
list-style-image: url(bullet.gif);
list-style-position: inside;
}
ul li:hover {
list-style-image: url(bullet_on.gif);
}
</style>
<title>text page</title>
</head>
<body>
<h2>Heading</h2>
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
</body>
</html>
