Frame und ich bekomme es nicht hin....

rich

Mitglied
Hallo ihr lieben ,
ich verzweifle gerade bei einem Frame und hab irgendwie eine Blockade =(

mein Frame sieht im Moment so aus wie im Bild 1.png

ich möchte es aber so haben wie bei 2.png
Google und sämtliche Framegeneratoren konnten da auch nicht wirklich helfen.

ist das überhaupt so machbar?

liebe grüße
 

Anhänge

  • 1.PNG
    1.PNG
    4,1 KB · Aufrufe: 6
  • 2.PNG
    2.PNG
    5 KB · Aufrufe: 7
Abgesehen von den Größenangaben usw. sollte es so doch wohl stimmen:


HTML:
<frameset rows="50,*">
	<frame src="a.html" />
	<frameset cols="50%,50%">
		<frameset rows="50,*" />
			<frameset cols="50%,50%">
				<frame src="b.html" />
				<frame src="c.html" />
			</frameset>
			<frame src="d.html" />
		</frameset>
		<frame src="d.html" />
	</frameset>
</frameset>
 
Zuletzt bearbeitet:
ich bin doch auch bescheuert !

also das mit dem Frames funktioniert...
ich meinte aber als Tabelle und nicht Frames sorry -.-



hab mal mehr oder weniger versucht das darzustellen...

PHP:
<TABLE cellSpacing=0 cellPadding=3 width=650 border=1>
 <TBODY>
  <TR>
   <TD colSpan=2>

<TABLE cellSpacing=0 cellPadding=0 width=690 align=center height=38>
 <TBODY>
  <TR>
   <TD width=50></TD>

 <center>Frame 1</center>

</TBODY></TABLE>
 <TR>
  <TD vAlign=top width=437>

<center>Frame 2</center>
<BR><BR><BR>
<BR><BR><BR>
<BR><BR><BR>
<BR><BR><BR>




<TD vAlign=top width=235>
<TABLE cellSpacing=0 cellPadding=0 width=0 align=center>
 <TBODY>
  <TR>

<center>Frame 3</center>
<BR><BR><BR>
<BR><BR><BR>
<BR><BR><BR>
<BR><BR><BR>

</TBODY></TABLE>

das ist in etwa 1.png

schaffst du das auch als Tabelle ?

lieben gruß
 
Zuletzt bearbeitet:
Hi,

HTML:
<html>
	<body>
		<table border="1">
			<tr>
				<td colspan="3">
					Frame 1
				</td>
			</tr>
			<tr>
				<td>
					Frame 2
				</td>
				<td>
					Frame 3
				</td>
				<td rowspan="2">
					Frame 5
				</td>
			</tr>
			<tr>
				<td colspan="2">
					Frame 4
				</td>
			</tr>
		</table>
	</body>
</html>

Gruß
BK
 
Zurück