nokill: Hintergrundfarbe, Tabellenfarben etc in eine CSS Datei auslagern

Beitrag lesen

Hi Manuel,
 yo das ist ganz einfach du speicherst alles in .css Dateien
also:

deinlayout.css:
#body { height:100%;
        width:100%;
      }

.text { color:#000000
        font-size:12px;
      }

deineseite.htm:
...
<head>
          <link rel="stylesheet" type="text/css" href="css/deinlayout.css">
</head>
...
<div id="body">
     <div class="text">
          Viel text
     </div>
</div>
...

mfg nokill