I am having trouble changing the font size and color of the a
when hovering over p
. I have been trying to figure this out for a while now, but I can't seem to get it to work.
If anyone has any simple links related to this topic, I would greatly appreciate it.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
p:hover div nav a {
color: blue;
font-size: 22px;
}
</style>
</head>
<body>
<div>
<nav>
<p>Ceramics</p>
<a href="">One</a>
<a href="">Two</a>
<a href="">Three</a>
</nav>
</div>
</body>
</html>