Hi,
It seems that firefox doesn't mind the gap but ie does. The only solution I can think of is to give the ul a background colour so that the focus is kept on the list.
Code:
UL {
list-style: none;
margin-left: 5px;background:#fff;
}
Edit:
I've just found out that if you specify a a background image then the focus remains on the list. The image doesn't even have to exist.
Code:
UL {
list-style: none;
margin-left: 5px;
background :url(images/fake.gif);
}
It doesn't seem to cause any problems.
Paul
Bookmarks