Homepage selbermachen 7.846 Themen, 35.563 Beiträge

css teilweise ausblenden

chillerpat321 / 12 Antworten / Flachansicht Nickles

Hallo habe für meine Webseite ein CSS-Style erstellt und über

<link href="../inc/css/style.css" rel="stylesheet" type="text/css" /> eingebunden.

Dieses Style wird ja jetzt auf die ganze Seite angewendet.

Wie kann ich einen teile der Seite ausblenden,das dieses CSS-Style nicht auf diesen teil der Webseite angewendet wird?

Hoffe Ihr könnt mir weiterhelfen!

bei Antwort benachrichtigen
chillerpat321 PeterP1 „Vielleicht bist du zu schreibfaul? Wenn du in der .css-Datei ...“
Optionen

nein habe des so geschrieben:

#menue

a:link    { color: #ffffff; text-decoration: none; }
a:visited { color: #ffffff; text-decoration: none; }
a:focus   { color: #ffffff; text-decoration: none; background: #871201; }
a:hover   { color: #ffffff; text-decoration: none; background: #871201; }
a:active  { background: #ffffff;}
 

#inhalt

a:link    { color: #fffabc; text-decoration: none; }
a:visited { color: #fffabc; text-decoration: none; }
a:focus   { color: #fffabc; text-decoration: none; background: #121201; }
a:hover   { color: #fffabc; text-decoration: none; background: #121201; }
a:active  { background: #fffabc;}

Und bin nicht schreibfaul

bei Antwort benachrichtigen