Div - problem
Hvordan får jeg 'kasper' til at stå øverst til venstre i den tonede boks?<html>
<head>
<style type="text/css">
.back
{
background-image: url("back.jpg");
background-repeat: no-repeat;
background-position: center top;
color: white;
font-family: arial;
}
.fade
{
filter: alpha(opacity=60);
background-color = black;
}
#lag1
{
position: relative;
z-index: 1;
text-align: center;
}
#lag2
{
position: relative;
z-index: 2;
text-align: center;
}
</style>
</head>
<body bgcolor="black">
<div id="lag1">
<table class="back" height="100%" width="692" align="center">
<tbody>
<tr>
<td width="5%" rowspan="4">
</td>
<td>
MENU</td>
<td width="5%" rowspan="4">
</td>
</tr>
<tr>
<td height="20">
</td>
</tr>
<tr>
<td class="fade">
<div id="lag2">Kasper
</div>
</td>
</tr>
<tr>
<td height="20">
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
