• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

CSS soll nur für Tabelle gelten

Status
Für weitere Antworten geschlossen.

nipoda

Neues Mitglied
Hallo!
Ich will folgende Tabelle in meine Homepage einbauen:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
<style type="text/css">
<!--
/*
Grey Suits you Sir. Please host the images on your own server.
written by Stuart Colville Muffin Research Labs by Stuart Colville
*/

table,td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table
{
border :none;
border :1px solid #CCC;
}
thead th,
tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
tbody tr td
{
padding : 5px 10px;
color : #666;
}
tbody tr:hover
{
background : #d8e7f5 url(tr_bck.gif) repeat;
}

tbody tr:hover td
{
color : #454545;
}
tfoot td,
tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #f2f6fa url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table a:link
{
color : #666;
}
table a:visited
{
color : #666;
}
table a:hover
{
color : #003366;
text-decoration : none;
}
table a:active
{
color : #003366;
}
-->
</style>
<body>
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>
</body>
</html>

Nun soll aber der CSS-Style nur für die Tabelle und nicht für die ganze Seite gelten, was muss ich ändern?

(Antworten am besten in Anfänger-Deutsch:mrgreen: )

Vielen Dank schonmal im Vorraus!
 
Die Angaben, die Du gemacht hast, gelten doch nur für Tabellen.
Wenn es denn nur für diese eine Tabelle gelten soll, und noch andere Tabellen auf der Seite sind, dann würde sich eine (eindeutige!) ID anbieten.

<table id="tabellenbezeichnung">

Im Stylesheet musst Du dan darauf reflektieren. Also z.B. "table#tabellenbezeichnung". Informiere Dich am besten über die CSS-Selektoren.
 
Genau, es soll nur für die eine Tabelle gelten...

Wie gesagt, ich bin Anfänger...

Kann mir jmd. zeigen wie das ganze dann aussehen würde, wenn man es mit einer ID machen würde?

Wäre super nett...
 
Naja, hab ich doch.

Zusätzlich schreibst Du im Stylesheet noch vor die Elemente einer Tabelle das "table#tabellenbezeichnung" davor, z.B. "table#tabellenbezeichnung caption", dann bezieht sich das nur auf die Elemente "caption", die innerhalb eines Elements "table" mit der ID "tabellenbezeichnung" liegen.
 
Hm... Danke, aber ich weiß jetzt nich wo ich das alles einsetzen soll...:-(

Kannst du das vllt gerade für mich an dem Beispiel:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
<style type="text/css">
<!--
/*
Grey Suits you Sir. Please host the images on your own server.
written by Stuart Colville Muffin Research Labs by Stuart Colville
*/

table,td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table
{
border :none;
border :1px solid #CCC;
}
thead th,
tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
tbody tr td
{
padding : 5px 10px;
color : #666;
}
tbody tr:hover
{
background : #d8e7f5 url(tr_bck.gif) repeat;
}

tbody tr:hover td
{
color : #454545;
}
tfoot td,
tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #f2f6fa url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table a:link
{
color : #666;
}
table a:visited
{
color : #666;
}
table a:hover
{
color : #003366;
text-decoration : none;
}
table a:active
{
color : #003366;
}
-->
</style>
<body>
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>
</body>
</html>

...hier machen?

Wäre super nett...
 
Hm... Danke, aber ich weiß jetzt nich wo ich das alles einsetzen soll...:-(
Dann solltest Du Dich mit den Grundlagen von CSS vertraut machen. Du wirst es ohnehin immer wieder brauchen.

Kannst du das vllt gerade für mich an dem Beispiel:
...hier machen?
Nein, tut mir leid. Ich helfe anderen, ich mache aber nicht deren Arbeit.
Ich möchte auch nicht, dass ich Dir das jetzt abändere und Du dann in 2 Tagen die selbe Frage wieder stellst, und wieder nicht weiter weißt.

Du weißt, dass es CSS ist, Du weißt von Klassen und von IDs und auch von Selektoren. Damit sollte man bei Google was finden, wo man sich einlesen kann.

Ansonsten findet sich vielleicht jemand anders, oder Du gehst in die Jobbörse.

Viel Erfolg,
-Efchen
 
Thx

Naja, dann halt nicht, ich wollte das ja nur als Vorlage....:(
Mir Vorlagen lassen sich so Sachen nunmal besser erarbeiten..

Trotzdem vielen Dank!!!
 
Code:
<table id="einzigetabelle">

im style dann

Code:
table#einzigetabelle
{

   border:1;
   irgendwas:irgendwie;
}

table.td#einzigetabelle
{
   color:red;
}
 
So, hab das ganze jetzt versucht, aber es ist Fehlgeschlagen:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
<style type="text/css">
<!--
table#tabelle1 {
table,td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table
{
border :none;
border :1px solid #CCC;
}
thead th,
tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
tbody tr td
{
padding : 5px 10px;
color : #666;
}
tbody tr:hover
{
background : #FFF url(tr_bck.gif) repeat;
}

tbody tr:hover td
{
color : #454545;
}
tfoot td,
tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #FFF url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table a:link
{
color : #666;
}
table a:visited
{
color : #666;
}
table a:hover
{
color : #003366;
text-decoration : none;
}
table a:active
{
color : #003366;
}
-->
</style>

<table id="tabelle1">
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>


Was muss ich anderst machen?
 
Es waren ja etliche. Die erste Zeile gleich, mit öffnender Klammer, aber ohne schließende. Und der Hinweis auf den Namen der ID muss vor jede Definition, die nur für diese eine Tabelle gelten soll.

Aber was anderes als sysop hab ich eigentlich auch nicht geschrieben...
 
Oh mann... hast recht:sad:

Ich verzweilfel noch daran...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
<style type="text/css">
<!--
table#tabellenbezeichnung
table,td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table
{
border :none;
border :1px solid #CCC;
}
thead th,
tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
tbody tr td
{
padding : 5px 10px;
color : #666;
}
tbody tr:hover
{
background : #d8e7f5 url(tr_bck.gif) repeat;
}

tbody tr:hover td
{
color : #454545;
}
tfoot td,
tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #f2f6fa url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table a:link
{
color : #666;
}
table a:visited
{
color : #666;
}
table a:hover
{
color : #003366;
text-decoration : none;
}
table a:active
{
color : #003366;
}
-->
</style>

<table id="tabellenbezeichnung">
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>
</table id>

Kann das mal jemand durchschauen, wo liegen hier die Fehler?
 
Kann das mal jemand durchschauen, wo liegen hier die Fehler?
Du hast es noch immer nicht vor jedem einzelnen Abschnitt eingebaut:

Code:
<style  type="text/css">  
<!--  
table#tabellenbezeichnung, table#tabellenbezeichnung td
{
	border               : 1px solid #CCC;
	border-collapse      : collapse;
  font                 : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table#tabellenbezeichnung
{
	border                :none;
	border                :1px solid #CCC;
}
table#tabellenbezeichnung thead th,
table#tabellenbezeichnung tbody th
{
	background            : #FFF url(th_bck.gif) repeat-x;
  color                 : #666;  
	padding               : 5px 10px;
  border-left           : 1px solid #CCC;
}
table#tabellenbezeichnung tbody th
{
  background            : #fafafb;
  border-top            : 1px solid #CCC;
  text-align            : left;
  font-weight           : normal;
}
table#tabellenbezeichnung tbody tr td
{
	padding               : 5px 10px;
  color                 : #666;
}
usw.

Du kannst natürlich anstatt "tabellenbezeichnung" auch einen sprechenderen Namen für Deine Tabelle wählen. Das sollte von mir nur der Hinweis sein, dass Du anstelle dieses Bezeichners Deinen eigenen Namen einsetzen kannst (nein, nicht Deinen Vor- oder Nachnamen ;-))

Außerdem ist mir aufgefallen, dass Du für einige Elemente Eigenschaften definierst, die Du dann in einem zweiten Block wieder anders setzt. Außerdem setzt Du für ein Element teilweise ein und die selbe Eigenschaft mit verschiedenen Werten.

Nochmal zur Erklärung:
* "table#tabellenbezeichnung" bezieht sich auf das HTML-Element "table" mit der ID (#) "tabellenbezeichnung".
* "table#tabellenbezeichnung td" bezieht sich nur auf das Element "td", das ein Nachfahre des Elements "table" mit der ID (#) "tabellenbezeichnung". Nachfahre heißt dabei, es kommt irgendwo innerhalb dieses Elements, als Kind, Enkel, Urenkel usw.
* "table#tabellenbezeichnung > td" bezieht sich hingegen auf ein "td" als Kind (also direkt unterhalb) von "table". Sowas gibt es aber bei Tabellen nicht, denn dazwischen kommt ja immer noch ein "tr".
* "table#tabellenbezeichnung tbody tr td" bezieht sich auf das Element "td", das irgendwo innerhalb eines "tr" ist, das wiederum innerhalb eines "tbody" steht, das wiederum innerhalb eines Elements "table" mit der ID (#) "tabellenbezeichnung" steht.

Alles klar? :-)

Grüße,
-Efchen

Ich seh da grad noch einen Fehler:
Code:
<table id="tabellenbezeichnung">
<TABLE border="0" class="mceVisualAid">
Du öffnest eine Tabelle und öffnest dann noch eine Tabelle. Das geht so natürlich auch nicht. Du musst der Tabelle, die Du formatieren willst, mit der ID versehen, also vermute ich mal, Du willst das:
Code:
<TABLE border="0" class="mceVisualAid" id="tabellenbezeichnung">
 
Danke!

Vielen, Vielen, Vielen Dank Elfchen:!:

Da hast du einen Härtefall erledigt und ich bin super Happy das alles hinbekommen zu haben...

Hier also der richtige Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
</head>

<style type="text/css">
<!--
table#tabellenbezeichnung, table#tabellenbezeichnung td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table#tabellenbezeichnung
{
border :none;
border :1px solid #CCC;
}
table#tabellenbezeichnung thead th,
table#tabellenbezeichnung tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
table#tabellenbezeichnung tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
table#tabellenbezeichnung tbody tr td
{
padding : 5px 10px;
color : #666;
}
table#tabellenbezeichnung tbody tr:hover
{
background : #d8e7f5 url(tr_bck.gif) repeat;
}

tbody tr:hover td
{
color : #454545;
}
table#tabellenbezeichnung tfoot td,
table#tabellenbezeichnung tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #f2f6fa url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table a:link
{
color : #666;
}
table a:visited
{
color : #666;
}
table a:hover
{
color : #003366;
text-decoration : none;
}
table a:active
{
color : #003366;
}
-->
</style>

<TABLE border="0" class="mceVisualAid" id="tabellenbezeichnung">
<TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>
</table id>
<P>
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">xxx*</TD><TD class="mceVisualAid">xxx*</TD></TR><TR><TD class="mceVisualAid">*xxx</TD><TD class="mceVisualAid">*xxx</TD></TR></TBODY></TABLE>
</html>
 
Da hast du einen Härtefall erledigt und ich bin super Happy das alles hinbekommen zu haben.
Na, ich hoffe nur, Du hast auch ein bisschen was verstanden :-)

Diese Elemente sind aber weiterhin für alle Tabellen definiert, das schreibe ich nur hin, damit Du prüfen kannst, ob Du das so willst.
Code:
tbody tr:hover td
caption
table a:link
table a:visited
table a:hover
table a:active
Wenn Du Leerzeilen zwischen den einzelnen Abschnitten einstreust oder wenigstens die Eigesncahften einrückst, wird es übersichtlicher.

Schönes Wochenende,
-Efchen
 
Danke, hatte ich übersehen, war aber nicht tragisch, da dort eh nichts drinstand, was Tabellen groß verändert...

Danke nochmals Elfchen;heart :wink:

Hier jetzt der absolut korrekte Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Tabelle</title>
</head>

<style type="text/css">
<!--
table#tabellenbezeichnung, table#tabellenbezeichnung td
{
border : 1px solid #CCC;
border-collapse : collapse;
font : small/1.5 "Tahoma", "Bitstream Vera Sans", Verdana, Helvetica, sans-serif;
}
table#tabellenbezeichnung
{
border :none;
border :1px solid #CCC;
}
table#tabellenbezeichnung thead th,
table#tabellenbezeichnung tbody th
{
background : #FFF url(th_bck.gif) repeat-x;
color : #666;
padding : 5px 10px;
border-left : 1px solid #CCC;
}
table#tabellenbezeichnung tbody th
{
background : #fafafb;
border-top : 1px solid #CCC;
text-align : left;
font-weight : normal;
}
table#tabellenbezeichnung tbody tr td
{
padding : 5px 10px;
color : #666;
}
table#tabellenbezeichnung tbody tr:hover
{
background : #d8e7f5 url(tr_bck.gif) repeat;
}

table#tabellenbezeichnung tbody tr:hover td
{
color : #454545;
}
table#tabellenbezeichnung tfoot td,
table#tabellenbezeichnung tfoot th
{
border-left : none;
border-top : 1px solid #CCC;
padding : 4px;
background : #f2f6fa url(foot_bck.gif) repeat;
color : #666;
}
caption
{
text-align : left;
font-size : 120%;
padding : 10px 0;
color : #666;
}
table#tabellenbezeichnung table a:link
{
color : #666;
}
table#tabellenbezeichnung table a:visited
{
color : #666;
}
table#tabellenbezeichnung table a:hover
{
color : #003366;
text-decoration : none;
}
table#tabellenbezeichnung table a:active
{
color : #003366;
}
-->
</style>

<TABLE border="0" class="mceVisualAid" id="tabellenbezeichnung">
<TBODY><TR><TD class="mceVisualAid">Zeile 1</TD><TD class="mceVisualAid">xy*</TD><TD class="mceVisualAid">asda*</TD><TD class="mceVisualAid">adasd*</TD><TD class="mceVisualAid">*ads</TD></TR><TR><TD class="mceVisualAid">Zeile 2</TD><TD class="mceVisualAid">xx</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*ada</TD><TD class="mceVisualAid">*ad</TD></TR><TR><TD class="mceVisualAid">Zeile 3</TD><TD class="mceVisualAid">xxy</TD><TD class="mceVisualAid">*asad</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*asda</TD></TR><TR><TD class="mceVisualAid">Zeile 4</TD><TD class="mceVisualAid">*dsd</TD><TD class="mceVisualAid">*asd</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*asd</TD></TR><TR><TD class="mceVisualAid">Zeile 5</TD><TD class="mceVisualAid">*sdas</TD><TD class="mceVisualAid">*ads</TD><TD class="mceVisualAid">*ad</TD><TD class="mceVisualAid">*asd</TD></TR></TBODY></TABLE>
</table id>
<P>
<TABLE border="0" class="mceVisualAid"><TBODY><TR><TD class="mceVisualAid">xxx*</TD><TD class="mceVisualAid">xxx*</TD></TR><TR><TD class="mceVisualAid">*xxx</TD><TD class="mceVisualAid">*xxx</TD></TR></TBODY></TABLE>
</html>
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben