Hallo,
Folgende Ausgangssituation:
Ich hab mir eine Homepage erstellt und mit Hilfe von CSS ein Layout aus einzelnen Containern erstellt. Das sieht soweit auch alles ganz gut aus.
Nur ist mein Problem das in jedem Browser mein Homepage anders aussieht. Also im IE 8 sieht alles so aus wie ich es haben will. Bei Google Chrome und Firefox lässt sich nix mehr erkennen von meinen Layout
Ich habe unten meine CSS Inhalt mal mit beigefügt. Was kann ich machen damit meine HP in jeden Browser gleich aussieht?? Ich bin Anfänger, vielleicht könnt ihr mir ja Tipps geben.
Ist es überhaupt möglich das zu realisieren? mit meinen Wissensstand?
#c1{
width: 1024px; //mein Untergrund auf dem alle Container draufgepackt werden
height: 768px;
background-color: #1697CE;
}
#c2{
width: 1024px; //Banner
height: 150px;
background-image:url('banner.jpg');
margin-left: 0;
}
#c3{
width: 224px; //meine Navigationsbar
height: 618px;
background-color: #1697CE;
margin-left: -800px;
}
#c4{
width: 800px; //hier wird der Inhalt reingepackt
height: 618px;
background-color: #0CA5F9;
margin-left: 224px;
margin-top: -618px;
}
body {
background-color: #181884;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
text-align: center;
}
