Is there a way to display disc bullet points in a horizontal list?
I've encountered an issue where setting display: inline;
in CSS prevents the class definition list-style-type: disc
from working.
My workaround involves manually inserting disc bullet points into the list:
<ul>
<li>· EN</li>
<li>· ES</li>
<li>· ES</li>
<li>· DE</li>
<li>· FR</li>
</ul>
After adding the disc bullet points and declaring
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
in the head section, the list appears correctly in my Coda editor preview. However, when I view it in a browser, I see . Why is this happening, and how can I troubleshoot the issue? Alternatively, what is the best method for displaying disc bullet points in a horizontal list?