Hallo,
ich taste mich gerade an CSS (reichlich spät, aber besser nie) heran und habe folgendes Problem. Alles wird im Opera/Mozilla richtig dargestellt und im IE falsch, z.B. macht IE aus Schrift grösse 10px ca. 30px.
So sieht mein CSS aus (Auschnitt):
/* Shop */
.shop_kategorie { font-size: 10px; color: #000000; font-family: verdana; background-color: #FFFFFF; border: solid 0px; border-color: #FFFFFF; text-align: left; }
.shop_titel { font-size: 11px; color: #000000; font-family: verdana; background-color: #FFFFFF; border: solid 1px; border-color: #637BAD; }
.shop_beschreibung { font-size: 10px; color: #000000; font-family: verdana; vertical-align: top; font-style: italic; }
.shop_preis { font-size: 10px; color: red; font-family: verdana; font-weight: bold; text-align: right; }
.shop_warenkorb { align: right; width: 100px; }
.shop_basket { font-size: 10px; color: #000000; font-family: verdana; text-align: left; }
.shop_basket_total { font-size: 10px; color: #000000; font-family: verdana; text-align: left; font-weight: bold; }
und so meine HTML-Datei (Ausschnitt):
<tr>
<td class="shop_basket">###SHIPPING_SELECTOR### (Portokosten bei ###SHIPPING_TITLE###*)</td>
<td class="shop_preis">###PRICE_SHIPPING_TAX### â¬</td>
</tr>
<tr>
<td class="shop_basket_total" valign=top>Total</td>
<td class="shop_preis" valign=top align=right nowrap>###PRICE_TOTAL_TAX### â¬</td>
</tr>
Mein angesprochenes Problem bezieht sich z.B. auf .shop_preis.
Gibt es da bekannte Probleme?
Ich hoffe mir kann jemand helfen.
Danke!
Junior