Сообщение от Riim
|
Охтыепт, заработало! Спасибо!
|
А для IE6, кстати, срабатывает через стили для <col />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
table {
width: 100%;
}
td {
border: 1px solid #f00;
}
col.col-1 {
text-align: right;
}
col.col-2 {
text-align: center;
}
col.col-3 {
text-align: left;
}
</style>
</head>
<body>
<table>
<colgroup>
<col class="col-1" />
<col class="col-2" />
<col class="col-3" />
</colgroup>
<thead>
<tr>
<th>…</th>
<th>…</th>
<th>…</th>
</tr>
</thead>
<tbody>
<tr>
<td>text</td>
<td>text</td>
<td>text</td>
</tr>
<tr>
<td>text</td>
<td>text</td>
<td>text</td>
</tr>
</tbody>
</table>
</body>
</html>