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 TheVomit „So kann man das machen, ich würde aber eher dazu raten ...“
Optionen

Ok habe jetzt mehrere CSS Tags gebildet mit:

#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;}

Habe jetzt das Problem das im Mozilla Browser das Tag #inhalt in die id zone von #menue mitmischt woran kann das liegen? aber andersherum nicht!

:)

bei Antwort benachrichtigen