I am currently having an issue when a table cell contains no content, the formatting is thrown off and despite trying various techniques am unable to get it to display inline in the same way as ones with content do.
<ul class="uk-wizard-progress">
<li class="uk-complete">Welcome</li>
<li class="uk-active"></li>
<li>Source</li>
</ul>
Example: http://codepen.io/nblackburn/pen/MKRVXa
I need to support both populated and unpopulated table cells but would like to tackle this with only CSS if it is at all possible.
Thanks in advance.