Ingo: Framsets

Beitrag lesen

Hallo Stefan,
dann probier das mal bei beiden aus:

<html>
<head>
<title>T</title>
</head>
<frameset cols="50%,50%" border=0 frameborder=0 framespacing=0>
<frame src="mainl.htm" name="links"  marginwidth=0 scrolling=no>
<frame src="mainl.htm" name="rechts" marginwidth=0 scrolling=no>
</frameset>
</html>

mainl.htm
<html>
<head>
<title>T</title>
<style type="text/css">
<!--
h3 {
    width:100%;
    border:solid 1px blue;
   }
//-->
</style>
</head>

<body>
<h3>Wieviel px bin ich?</h3>
<table border=1 width=100%><tr><td>test1</td></tr></table>
</body>
</html>

Gruß Ingo