Having an issue with an unordered list where the list items aren't all on the same line. The 5th element is dropping to the next line even though each item is set to 20% of the container. The math adds up, so not sure what's causing the problem. Can anyone help?
Snippet of HTML
<div class="navi">
<ul>
<li><a href="/">Home</a></li>
<li><a href="#">Get The<br>Facts</a></li>
<li><a href="#">Professional<br>Education & Resources</a></li>
<li><a href="#">Understanding<br>Addiction</a></li>
<li><a href="#">More About<br>The Blunt Truth</a></li>
</ul>
</div>
CSS Code
.navi ul { width:100%; }
.navi ul > li { background:#347311; width:20%; display:inline-block; }
.navi ul > li > a { font-size:20px; color: #f4f6cf; font-weight: 700; }