Looking to create a span that spans 100% of its parent li element
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a>
<span>
<a href="#">One</a>
<a href="#">Three</a>
<a href="#">Four</a>
</span>
</li>
<li><a href="#">Services</a>
<span>
<a href="#">One</a>
<a href="#">Two</a>
<a href="#">Three</a>
</span>
</li>
<li><a href="#">Responsibility</a>
<span>
<a href="#">One</a>
<a href="#">Two</a>
</span> </li>
<li><a href="#">Contact</a></li>
</ul>
My current navigation bar setup is as follows:
However, I want it to look like this:
Is there a way to accomplish this? I attempted to use width:100%;
for the span, but it extended outside the li element and affected all the spans to the width of the ul.