<td><font color="white" size=2><test></font></td> ist das richtig?
in tabelle text farbe und text grösse ädnern
-
-
test nicht in <>
-
-
ist es möglich eine farbe für den text in einer tabelle grundlegend festzulegen?
wenn ja, wie? ;P -
-
-
*lol*
bin ich blöd *G*
-
Zitat
bin ich blöd *G*
Hääää? Ich dachte du bist fränkisch???Back to Topic:
Code
Alles anzeigen<head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <style type="text/css"> /* Tabellen */ .tabeins { background-color: #F0F8FF; color : #000000 font-size : 12pt; font-family : verdana, arial; border : 1px solid #00008B; } </style> </head> <body> <table class="tabeins"> <tbody> <tr> <td>Test</td> </tr> </tbody> </table> </body>
So definierst du alle Tabellen der Klasse "tabeins" mit dieser Formatierung -
is in etwa das selbe....
Code
Alles anzeigen<head> <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"> <style type="text/css"> table { background-color: #F0F8FF; color : #000000 font-size : 12pt; font-family : verdana, arial; border : 1px solid #00008B; } </style> </head> <body> <table> <tbody> <tr> <td>Test</td> </tr> </tbody> </table> </body>
wennst nur eine tabelle hast kannst auch so machen...