Hi, ich hab html erst vor kurzem gelernt und ich hab ein paar fragen...
Mein Hauptproblem hab ich mit dem Layout Gerüst.
Ich will das die linke navigation die Hauptseite und die rechte box in einer Reihe sind... Nur klappt das nicht so wirklich ich hab hier mal den Code eingefügt
Index.html
Jetzt noch die css datei
Meiner meinung nach sollte alles stimmen ich bin mir nur bei margin und float nicht so sicher...
PS:Ich benutze den Phase 5.4 Editor ist der gut oder nicht?
MfG Juventino
Mein Hauptproblem hab ich mit dem Layout Gerüst.
Ich will das die linke navigation die Hauptseite und die rechte box in einer Reihe sind... Nur klappt das nicht so wirklich ich hab hier mal den Code eingefügt
Index.html
Code:
<body text="#000000" bgcolor="#FFFFFF" link="#FF0000" alink="#FF0000" vlink="#FF0000">
<!--HEAD-->
<div><div id="head">
<img src="../MY PAGE/Style 1/bilder/header.JPG" width="971" height="65" border="0" alt=""></div>
<!--Ende HEAD-->
<!--NAVIGATION LINKS--><div id="navigation">
</div>
<!--Ende NAVIGATION LINKS-->
<!--HAUPTTEIL-->
<div id="main">
</div>
<!--Ende HAUPTTEIL-->
<!--RECHTE MENÜBOX 1-->
<div id="box1">
</div></div>
<!--Ende RECHTE MENÜBOX 1-->
<!--RECHTE MENÜBOX 2-->
<!--<div id="box2">
</div>
<!--Ende RECHTE MENÜBOX 2-->
<!--RECHTE MENÜBOX 3-->
<!--<div id="box3">
</div>
<!--Ende RECHTE MENÜBOX 3-->
</body>
Code:
#head{
width:1000px;
height:200px;
border:3px blue solid;
margin-left:3cm;
}
#navigation{
width:200px;
height:800px;
border:3px blue solid;
border-top:none;
border-bottom:3px blue solid;
margin-left:3cm;
float:left;}
#main{
width:594px;
height:800px;
border-bottom:3px blue solid;
border-right:3px blue solid;
margin-right:3cm;
}
#box1{
width:200px;
height:800px;
border:3px blue solid;
border-left:none;
border-top:none;
margin-right:3cm;
margin-bottom:10cm;
float:right;
}
#box2{
width:200px;
height:250px;
border:3px blue solid;
float:right;
}
#box3{
width:200px;
height:250px;
border:3px blue solid;
float:right;
PS:Ich benutze den Phase 5.4 Editor ist der gut oder nicht?
MfG Juventino