I am facing an issue where the dropdown menu is visible but the items inside it are not appearing.
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="index.html">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item">Something else here</a></li>
</ul>
</li>
Although I got this code from bootstrap and thoroughly checked my CSS, the issue persists with no resolution in sight.
I have tried altering all relevant CSS properties, but to no avail.