Gast
2005-12-10, 14:25:44
Habe schon alle seiten abgeklapert, aber das Problem nicht gelöst.
CSS frame mit DIV boxen------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>muffelmann</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel=stylesheet type="text/css" href="../css/referenzen.css">
</head>
<body>
<div class="box1"id="oben">oben</div>
<div class="box2"id="menu">
<ul>
<li><a href="seite1.html" id="rechts">seite1</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
</ul>
links
</div>
<div class="box3"id="rechts">rechts</div>
</body>
</html>
CSS Code................................................................
body{
margin:0px;
padding:0px;}
.box1{
background:gainsboro;
padding:5px;
border:1px solid black;
height:80px;}
.box2{
background:silver;
float:left;
padding:1px;
border:1px solid black;
width:170px;
height:400px;
margin:0px;}
.box3{
background:darkgray;
padding:5px;
margin:0px 5px 0 140px;
border:1px solid black;
height:400px;
}
Ich will das die Seite1 rechts angezeigt wird in der grauen Box und nicht in einen Neuen Fenster startet.
Seite1 Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<body>
seite 1
</body>
</html>
Hat einer ein Plan
CSS frame mit DIV boxen------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>muffelmann</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel=stylesheet type="text/css" href="../css/referenzen.css">
</head>
<body>
<div class="box1"id="oben">oben</div>
<div class="box2"id="menu">
<ul>
<li><a href="seite1.html" id="rechts">seite1</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Irgendwas</a></li>
</ul>
links
</div>
<div class="box3"id="rechts">rechts</div>
</body>
</html>
CSS Code................................................................
body{
margin:0px;
padding:0px;}
.box1{
background:gainsboro;
padding:5px;
border:1px solid black;
height:80px;}
.box2{
background:silver;
float:left;
padding:1px;
border:1px solid black;
width:170px;
height:400px;
margin:0px;}
.box3{
background:darkgray;
padding:5px;
margin:0px 5px 0 140px;
border:1px solid black;
height:400px;
}
Ich will das die Seite1 rechts angezeigt wird in der grauen Box und nicht in einen Neuen Fenster startet.
Seite1 Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<body>
seite 1
</body>
</html>
Hat einer ein Plan