Monitor: Tabellen mit CSS formatieren ...

Guten Abend ...
ich hab auch schon gegoogelt ... aber irgendwie nicht das rechte gefunden.
Kann mir jemand ein gutes Tut empfehlen, wo ich als Newbie begreife, wie ich eine HTML-Tabelle
[ <table bgcolor="#FFFFCC" width="100%" border="0" cellspacing="1"
    cellpadding="1">
    <tr bgcolor="#000066">
      <td colspan="2" (class="txt1") align="right" valign="top">
        INHALT
      </td> ... ]

als
tabelle1 irgendwie per CSS vordefinieren kann ?

Danke auch schon mal ...
Monitor

  1. guten Abend ebenfalls,

    Kann mir jemand ein gutes Tut empfehlen, wo ich als Newbie begreife, wie ich eine HTML-Tabelle [...] als tabelle1 irgendwie per CSS vordefinieren kann ?

    Klar ;-)
    Lies dir einfach die dafür "zuständigen" Kapitel in SELFHTML durch und befolge, was dir darin geraten wird.

    Grüße aus Berlin

    Christoph S.

  2. Ich hoffe es ist das, was du meintest!

    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN"
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="de">
         <head>
              <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
              <title>Ihr Titel hier</title>
              <style type="text/css">
                    <!--
                    table {
                    color : rgb(0,0,0);
                    background-color : #FFFFCC;
                    width : 100%;
                    border : 0;
                    }
                    tr {
                    color : rgb(0,0,0);
                    background-color : #000066;
                    }
                    .txt1 {
                    font-size : 12px;
                    }
                    -->
              </style>
         </head>

    <body>
              <table cellpadding="1" cellspacing="1">
                    <tr>
                       <td class="txt1" colspan="2">
                       INHALT
                       </td>
                    </tr>
              </table>
         </body>
    </html>