Zettelkasten
New member
Hallo.
Ich fange gerade mit CSS an und habe eine CSS-Datei, stylesheet.css. In der Datei steht mein Code:
Wenn ich die Datei einbinde, werden alle Links so dargestellt. Wie kann ich es machen, das nur die Links innerhalb einer DIV so dargestellt werden, und alle anderen normal?
Vielen Dank schon im Voraus!
Ich fange gerade mit CSS an und habe eine CSS-Datei, stylesheet.css. In der Datei steht mein Code:
Code:
a:link {
color: black;
}
a:visited {
color: black;
}
a:active {
color: black;
text-decoration: none;
}
a:hover {
color: black;
text-decoration: none;
}
Vielen Dank schon im Voraus!