If I code inline list items on separate lines of code there is a space inserted between them.
Is there a way to prevent this from happening with coding all of the list items on the same line of code?
<li>123</li>
<li>456</li>
creates the following which I don't want
123 456
<li>123</li><li>456</li>
creates the following which i do want
123456
thanks