4 bokse udfra samme punkt
Jeg har prøvet at lave 4 bokse som "vokser" ud fra centrum...her er min html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
p{
font-family:tahoma, sans-serif;
font-size:11px;
color:white;
}
div#menu{
width:200px;
height:190px;
background-color:red;
}
div#flashholder{
width:250px;
height:150px;
background-color:red;
}
div#submenu{
width:200px;
height:100px;
background-color:red;
}
div#content{
width:350px;
height:250px;
background-color:red;
}
</style>
</head>
<body>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr valign="middle">
<td align="center">
<table width="200" cellspacing="20px">
<tr>
<td valign="bottom" align="right">
<div id="menu"><p>
Menu
</p></div>
</td>
<td valign="bottom" align="left">
<div id="flashholder"><p>
Flashholder
</p></div>
</td>
</tr>
<tr>
<td valign="top" align="right">
<div id="submenu"><p>
Submenu
</p></div>
</td>
<td valign="top" align="left">
<div id="content"><p>
Content
</p></div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Det hele er i midten, men jeg vil have sådan at alle boksenes hjørne som er mod midten af siden, skal være i midten af siden.
Hvis I ikke forstår så skriv.
På forhånd tak
Orhan