Hallo Leute,
Ich suche eine Tabellenvorlage, um genau zu sein eine Preistabelle. Sollte schon mit formatierungen (Style) sein.
Gibt es sowas schon fertig?
Danke
Hallo Leute,
Ich suche eine Tabellenvorlage, um genau zu sein eine Preistabelle. Sollte schon mit formatierungen (Style) sein.
Gibt es sowas schon fertig?
Danke
Was willst du da für eine Vorlage haben? Niemand kennt deine Vorgaben, wie soll man da eine Vorlage schreiben? Außerdem ist das ja nun wirklich kein riesiger Aufwand, das selber zu erstellen.
Simple Sache:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/Strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<style type="text/css"><!--
table { border-collapse: collapse; }
td { border: 1px solid #000000 }
.col1 { width:100px; background-color: #ff0000;}
.col2 { width:200px; background-color: #00ff00;}
.col3 { width:300px; background-color: #0000ff;}
--></style>
</head>
<body>
<table>
<tr>
<td class="col1">Spalte 1</td>
<td class="col2">Spalte 2</td>
<td class="col3">Spalte 3</td>
</tr>
<tr>
<td class="col1">Spalte 1</td>
<td class="col2">Spalte 2</td>
<td class="col3">Spalte 3</td>
</tr>
<tr>
<td class="col1">Spalte 1</td>
<td class="col2">Spalte 2</td>
<td class="col3">Spalte 3</td>
</tr>
<tr>
<td class="col1">Spalte 1</td>
<td class="col2">Spalte 2</td>
<td class="col3">Spalte 3</td>
</tr>
</table>
</body>
</html>
Alles anzeigen