Müller: Pure verzweiflung in Tabellen

Beitrag lesen

Hallo :--)

viellecht hilft dir hier zb: colspan
<th colspan="4">Vereinsstatistik</th>

oder gleich mittels css arbeiten...

<style>  
table {  
  width: 700px;  
  border-collapse: collapse;  
}  
tr {  
  background-color: rgba(255, 255, 255, .6);  
}  
th {  
  background-color: rgba(200, 200, 200, .6);  
  padding: 2px 2px 4px 4px;  
  text-align: left;  
}  
th[colspan] {  
  text-align: center;  
  background-color: rgb(255, 255, 255);  
}  
td {  
  width: 13%;  
  padding: 2px 2px 4px 4px;  
  border: 1px dotted rgba(200, 200, 200, .6);  
}  
td:first-child {  
  width: 60%;  
}  
</style>
<table>  
<tr>  
  <th colspan="4">Vereinsstatistik</th>  
<tr>  
  <th colspan="4">2013/2014</th>  
</tr>  
<tr>  
  <th>Verein</th>  
  <th>Liga</th>  
  <th>Spiele</th>  
  <th>Tore</th>  
</tr>  
<tr>  
  <td>----</td>  
  <td>---</td>  
  <td>---</td>  
  <td>---</td>  
</tr>  
<tr>  
  <td>-</td>  
  <td>--</td>  
  <td>--</td>  
  <td>-</td>  
</tr>  
</table>

viele Tooore
Müller