Hallo,
ich habe zu einem Programm eine Onlinehilfe in HTML geschrieben und diese mit einer CSS Datei designt. Gestern habe ich nun versucht alle HTML in 2 Spalten darzustellen. Dazu habe ich diese Zeile im CSS hinzugefügt:
#navi { float:left;} #inhalte { float:right;}
Das funktioniert auch soweit ganz gut. Leider werden mir alle Bilder in meinen HTML nicht mehr angezeigt sobald ich die Zeile hinzufüge. Weiss jemand warum das so ist???
Hier noch mal der komplette Quelltext des CSS:
body { font-family:arial,sans-serif; background-color:#EBE9D8; margin-left:10%; margin-right:20%; margin-top:10px; margin-bottom:10px; } <!-- Farb- und Schriftbestimmung der Hauptanwendung-->
p, h1, h2, h3, h4, ul, ol, li, div, td, th, address, blockquote, nobr, b, i { font-family:arial,sans-serif; color:#070204; }
h1 { font-size:18pt; color:#070204; }
h2 { font-size:14pt; color:#070204; }
h3, { font-size:12pt; color:#070204; }
h4 { font-size:12pt; color:#070204; }
p, ul, ol, li, div, td, th, address, nobr, b, i { font-size:12pt; color:#070204; }
pre { font-family:courier new,courier; font-size:12pt; color:#070204; }
a:link { color:##0000FF; text-decoration:underline; }
a:visited { color:#800080; text-decoration:underline; }
a:hover { color:#FF0000; text-decoration:none;}
a:active { color:#FF0000; text-decoration:none; }
a.an { text-decoration:none; }
tt { font-family:courier new,courier; font-size:12pt; color:#070204; }
td.xmpcode { background-color:#FAF8F3; color:#C0C0C0; border:1pt solid #999999; }
.code { background-color:#FAF8F3; }
td.xplcode { background-color:#FAF8F3; }
.doc { background-color:#FAF8F3; }
.qbar { background-color:#FAF8F3; font-size:9pt; font-family:arial,sans-serif; }
pre.normal { color:#000000; }
#navi { float:left;} #inhalte { float:right;}