Dude
Hi,
ich habe eine Tabelle mit drei Spalten. Die erste und letzte sollen dabei eine Breite von 25% haben. Die mittlere 50% (insgesammt 100%).
Leider ist es mir nicht gelungen das zu realisieren:
Kann mir jemand helfen?
ich habe eine Tabelle mit drei Spalten. Die erste und letzte sollen dabei eine Breite von 25% haben. Die mittlere 50% (insgesammt 100%).
Leider ist es mir nicht gelungen das zu realisieren:
Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>undefined</title>
</head>
<body>
<style type="text/css">
table.field{
table-layout:fixed;
word-wrap:break-word;
background:blue;
width:100%;
}
td, th{
border:1px solid black;
}
table.field tr{
width:50%;
}
table.field tr:first-child,
table.field tr:last-child{
width:25% !important;
}
</style>
<table class="field">
<thead>
<tr>
<th>*</th>
<th>*</th>
<th>*</th>
</tr>
</thead>
<tbody>
<tr>
<td>*</td>
<td>*</td>
<td>*</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>*</td>
<td>*</td>
<td>*</td>
</tr>
</tfoot>
</table>
</body>
</html>