Che zrobic tabele w CSS i one dobrze sie wyswietlaja w Mozilli FireFox, Operze ale nie w marnym IE 6.0 ?? da sie to jakos zrobic tak zeby nie uzyc:
TABLE,TR,TD, itd...
A uzyc style CSS?
- Kod: Zaznacz cały
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl">
<head>
<style type="text/css">
<!--
*
{
font-family: "Trebuchet MS", sans-serif;
font-size: xx-large
}
div
{
border-style: solid;
border-color: red
}
.Table
{
display: table;
border-style: solid;
border-color: blue;
table-layout:fixed;
}
.TableRow
{
display: table-row
}
.TableCell
{
display: table-cell
}
-->
</style>
<title>Tabela w CSS</title>
</head>
<body>
<div class="Table">Tabela
<div class="TableRow">
<div class="TableCell">Jeden</div>
<div class="TableCell">Dwa</div>
</div>
<div class="TableRow">
<div class="TableCell">Trzy</div>
<div class="TableCell">Cztery</div>
</div>
</div>
</body>
</html>