problem med at få billede i bund af frame
Jeg har lavet en index.htm -fil som "loader" to andre htm-filer (et.htm, og to.htm).Hvert frame indeholder halvdelen af et billede, som jeg ønsker sat sammen.
Mit problem er at jeg ikke kan få det øverste billede til at være nederst i dens frame, så det bliver sat sammen med det andet billede i toppen af nederste frame.
Det er en betingelse at størrelsen på henholdsvis frames og billeder ikke må ændres...
Billedet skal således placeres nederst i øverste frame (et.htm)
Jeg har haft gjort det i et andet dokument, men kan ikke finde ud af hvordan :-(
Se mit nuværende problem her:
http://pingvin.adsl.dk/frame/
index.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Untitled Document</title>
</head>
<frameset rows="133,*" cols="*" framespacing="0" frameborder="no" border="0" bordercolor="#00CC00">
<frame src="et.htm" name="topFrame" frameborder="no" scrolling="NO" noresize marginwidth="0" marginheight="0" >
<frame src="to.htm" name="mainFrame" frameborder="no" scrolling="no" noresize marginwidth="0" marginheight="0">
</frameset>
<noframes><body>
</body></noframes>
</html>
et.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#000099" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align="left">
<p align="right"><img src="et.gif" width="283" height="115" align="bottom"></p>
</div>
</body>
</html>
to.htm:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#CC0000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align="right"><img src="to.gif" width="283" height="97" align="top">
</div>
</body>
</html>