Gestaltung von Links in einem Div mit einer bestimmten Klasse

Ich frage mich, wie ich Links in einem bestimmten Div mit einer bestimmten Klasse wie stylen könnte

.navigation-div : a:link,a:visited {
  color:red;
  }

Etwas HTML

  <div class="navigation-div">
  <a href="home.php">Home</a>
  <a href="home.php">List</a>
  <a href="home.php">Download</a>
  <a href="home.php">Files Used</a>
  <a href="home.php">Documentation</a>
  </div>

  <div class="client-header">
  <h1><a href="home.php">CRUD Application</a></h1>
  </div>

Gibt es einen Selektor für solche Dinge?

Antworten auf die Frage(1)

Ihre Antwort auf die Frage