I am facing an issue with my code where I cannot get the UL element to appear at the top of the div as it is a child element.
<!doctype html>
<html>
<head>
<title>xxx</title>
</head>
<body>
<div id="page" style="border:1px solid black;">
<ul id="ul" style="border:1px solid black; top:0;">
<li>
<h2></h2>
</li>
</ul>
</div>
</body>
</html>
Any assistance in resolving this would be greatly appreciated. Thank you!