I am having an issue where the styling does not change the display to block when hovering. Any insights or feedback would be greatly appreciated.
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<title>CSS Selectors</title>
<style>
div ul li:hover> ul {
display:block;
}
</style>
</head>
<body>
<div id="container">
<ul>
<li> List Item
<ul style="display:none;">
<li> Child </li>
</ul>
</li>
<li> List Item </li>
<li> List Item </li>
<li> List Item </li>
</ul>
</div>
</body>
</html>