molily: XHTML Frames mit CSS

Beitrag lesen

da man ja bein XHTML keine Frames mehr benutzen sollte oder darf, stell ich jetzt mal folgende Frage.

Man darf schon. XHTML 1.0 hat einen Frameset-Variante und XHTML Modularization ein entsprechendes Modul.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Ich bin ein XHTML 1.0-Frameset.</title>
</head>
<frameset cols="25%,75%">
<frame name="bla1" src="bla1.html" />
<frame name="bla2" src="bla2.html" />
<noframes>
<body>
<h1>Ich bin ein XHTML 1.0-Frameset.</h1>
...
</body>
</noframes>
</frameset>
</html>