Und das ist soooooooooooooooooooooo einfach Leute. Das folgende Grundgerüst für das übliche 3 Frame Layout habe ich in 2 Minuten hingeschi..... :ZeHa hat geschrieben:Außerdem ist der Inhalt mittlerweile auch völlig ohne Frames perfekt managebar, im Prinzip könnte man ein Frame-Design vollständig nachbilden in CSS.
Code: Alles auswählen
<html>
<head>
<title>"Frames" mit CSS</title>
</head>
<body text="#FFFFFF" bgcolor="#000000">
<div style="position: absolute; left: 0px; top: 0px; width: 800px; height: 80px; padding: 10px; color: #0000FF; background-color: #000080;">
<p>Kopf</p>
<p>Hier euer Schrott für Frame 1</p>
</div>
<div style="position: absolute; left: 0px; top: 80px; width: 200px; height: 800px; padding: 10px; color: #FF0000; background-color: #800000;">
<p>Menue</p>
<p>Hier euer Schrott für Frame 2</p>
</div>
<div style="position: absolute; left: 200px; top: 80px; width: 600px; height: 800px; padding: 10px; color: #FFFF00; background-color: #808000;">
<p>Inhalt</p>
<p>Hier euer Schrott für Frame 3</p>
</div>
</body>
</html>
