Hallo,
versuche eine Seite zu erstellen. Die Seite soll aus mehreren Grafiken bestehen. Die einzelnen Grafiken sollen teilweise als verlinkt werden und teilweise mit Text belegt werden. Die Grafiken sind mit CSS positioniert. Nun möchte ich, dass sich die Seite automatisch an die Auflösung des jeweiligen Besuchers anpasst.
Ist das irgenwie möglich? Bin schon fast an verzweifeln.
Kann mir jemand helfen? Vielen Dank!!
Hier mein Quelltext:
<HTML>
<HEAD>
<TITLE>Forum</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<STYLE TYPE="text/css">
<!--
#Box1 {
position:absolute;
left:0px;
top:0px;
width:288px;
height:90px;
}
#Box2 {
position:absolute;
left:288px;
top:0px;
width:518px;
height:90px;
}
#Box3 {
position:absolute;
left:0px;
top:90px;
width:288px;
height:306px;
}
#Box4 {
position:absolute;
left:288px;
top:90px;
width:518px;
height:306px;
}
#Box5 {
position:absolute;
left:0px;
top:396px;
width:288px;
height:249px;
}
#Box6 {
position:absolute;
left:288px;
top:396px;
width:518px;
height:249px;
}
-->
</STYLE>
</HEAD>
<BODY BGCOLOR=#FFFFFF>
<DIV ID="Box1">
<IMG SRC="images/Forum_01.gif" WIDTH=288 HEIGHT=90></DIV>
<DIV ID="Box2">
<IMG SRC="images/Forum_02.gif" WIDTH=518 HEIGHT=90></DIV>
<DIV ID="Box3">
<IMG SRC="images/Forum_03.gif" WIDTH=288 HEIGHT=306></DIV>
<DIV ID="Box4">
<IMG SRC="images/Forum_04.gif" WIDTH=518 HEIGHT=306></DIV>
<DIV ID="Box5">
<IMG SRC="images/Forum_05.gif" WIDTH=288 HEIGHT=249></DIV>
<DIV ID="Box6">
<IMG SRC="images/Forum_06.gif" WIDTH=518 HEIGHT=249></DIV>
</BODY>
</HTML>