Is there a way to prevent the right menu dropdown child elements from extending off the page? I believe it requires some simple CSS adjustments, but I'm not sure which styles to modify. Any guidance would be greatly appreciated.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your custom page title here</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pure/0.6.0/pure-min.css">
<style>
ul{background-color: #4CAF50; width: 100%}
</style>
</head>
<body>
<div class="pure-menu pure-menu-horizontal">
... (omitted for brevity)
</li>
</ul>
</div>
</body>
</html>
I am aiming to align them on the right side of the page without exceeding the boundaries.
Thank you!