iLife: CSS Bildermosaik statt Tabelle (Anfängerfrage)

Beitrag lesen

Hallo! Leider habe ich jetzt wieder ein Problem bei der Darstellung im Internet Explorer (Mac dürfte unter Windows aber das Selbe sein).

Man beachte das "Faviconmosaik"
http://sale.twoday.net/stories/1651566/

CSS-Code ist jetzt folgender:

/* IE (CSS-Weiche) */

* html ul { float:left; }
* html ul li { clear:left; }

/* IE Ende */

.faviconmosaik ul {
  margin: 0px;
  padding: 0px;
  line-height: 0px;
  clear: left;
  }

.faviconmosaik ul li {
  width: 16px;
  list-style-type: none;
  display: inline;
  margin: 0px;
  padding: 0px;
  height: 16px;
  float: left;
  }

.faviconmosaik {
  width: 160px;
  border: 1px solid #999999;
  padding: 0px;
  margin: 0px;
  height: 160px;
  background-image: url("<% image as="url" name="faviconmosaik" %>");
  }

***** ***** ***** ***** *****
HTML-Code ist:

<div class="faviconmosaik">
<ul>
<li><a href="#"><% image name="bildname.gif" %></a></li>
<li>... usw. ...</li>
</ul>
... usw. ...
<ul>
<li>... usw. ...</li>
</ul>
</div>

Was ist da falsch???
Danke,
iLife!