Hallo,
ik wil dat lege kopje helemaal links onder het rechtermenu krijgen (GP Maleisie)

Zie: Hier

Wat moet ik dan doen in mijn css om deze daaronder te krijgen?

CSS code:
#tabel3 >GPmaleisie kop { 
width:30px; 
height:30px; 
border-left: 1px solid #000000; border-right: 1px solid #000000; border-top: 1px solid #000000; border-bottom: 1px solid #000000; 
float: left; 
margin-left: 4px; 
} 
#tabel4 > kopje daaronder (die nu naast het menu zit { 
width:30px; 
height:30px; 
border-left: 1px solid #000000; border-right: 1px solid #000000; border-top: 1px solid #000000; border-bottom: 1px solid #000000; 
float: right; 
margin-left: 4px; 
margin-top: 4px;  


PHP/HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<link href="http://roytje.awardspace.com/opmaak.css" rel="stylesheet" type="text/css" media="all" />
<style type="text/css">
<!--
body,td,th {
	font-size: 8pt;
	font-family: verdana;
}
.style3 {font-size: 8pt}
.style5 {font-size: 8pt; font-weight: bold; }
-->
</style>
</head>

<body>
<div id="menu">GP Maleisie</div>
<table width="152" border="0">
<tr>
<td width="146" height="2"></td>
  </tr>
  <tr>
<td width="152" height="14" style="border-top: 1px solid #000000; border-bottom: 1px solid #000000;">  <div align="center"><span class="style5">Dag 1</span></div></td>
  </tr>
    <tr>
    <td width="152" height="14"><span class="style3">04:00-05:00: 1e training </span></td>
  </tr>
<td width="152" height="14"><span class="style3">04:00-05:00: 2e training </span></td>
  </tr>
    <tr>
<td width="152" height="14" style="border-top: 1px solid #000000; border-bottom: 1px solid #000000;">  <div align="center"><span class="style5">Dag 2</span></div></td>
  </tr>
    <tr>
    <td width="152" height="14"><span class="style3">04:00-05:00: 3e training </span></td>
  </tr>
<td width="152" height="14"><span class="style3">04:00-05:00: 4e training </span></td>
  </tr>
  <td width="152" height="14" style="border-top: 1px solid #000000; border-bottom: 1px solid #000000;">  <div align="center"><span class="style5">Dag 3</span></div></td>
  </tr>
    <tr>
    <td width="152" height="14"><span class="style3">05:00: Sprintrace </span></td>
  </tr>
<td width="152" height="14"><span class="style3">05:00: Hoofdrace </span></td>
  </tr>
    <td width="152" height="14" style="border-top: 1px solid #000000; border-bottom: 1px solid #000000;">  <div align="center"><span class="style5">Overig</span></div></td>
  </tr>
    <tr>
    <td width="152" height="14"><div align="center"><span class="style3">Uitzendtijden </span></div></td>
  </tr>
  <td width="152" height="14"><div align="center"><span class="style3">Live Timing</span></div></td>
  </tr>
</table>
</div>
<div id="tabel4"><?php include('standklein.php'); ?></div>
</body>
</html>

Reageren