Salve ragazzi.
Secondo voi qual'è il problema del mio css con IE. in pratica come potete vedere da voi, con Mozilla la visualizzazione è tutto ok mentre con IE la data del post viene sovrapposta al titolo del post stesso. Come è possibile?

Il codice css è:
codice:
/* -------------------- POST -------------------- */

.posthead { position: relative; clear: left; padding-bottom: 10px; }
.posthead h2 { font-size: 22px; font-weight: normal; padding: 0px 0px 0px 50px; margin: 0px; }
.posthead h2 a { color: #0054a6; }
.posthead h2 a:hover { color: #007e03; }	

.postauthor { padding: 0px 0px 0 50px; margin: 0px; font-size: 10px; color:#666; }
.postdate { margin: 0px; position: absolute; top: 0px; left: 0px; text-align: center; padding: 0px 10px 6px 10px; }
.postdate small { font-size: 9px; color:#666; }
.postdate .month { display:block; text-transform: uppercase; font-size: 9px;}
.postdate .day { display:block; font-size: 22px; letter-spacing: -1px; font-weight: normal; color:#777;}
.postdate .year { display:block;}
mentre il codice del div è:

codice:
		<div class="posthead">
		<h2>[...]</h2>
		<small class="postauthor">Pubblicato nel 2008 in [...] | Nessun Commento  &#183; Modifica</small>
		<p class="postdate">

		<small class="day">5</small>
		<small class="month">Gen</small>
		<small class="year"></small>
		</p>
		</div>