Trying to center my bullet points in the middle of the page while left-aligning my list. Right now, my list is looking like this.
HTML
<ul style="list-style-type:none;">
<li><b>exercitation :</b> consectetur adipiscing elit</li>
<li><b>minima :</b> aliquip ex ea commodo consequat</li>
<li><b>commodi consequatur:</b> magni dolores eos</li>
</ul>
CSS
ul {
text-align: center;
list-style-position: inside;
}
Run the code snippet below.
ul {
text-align: center;
/* When I center this it looks like this whereas I want this in the middle but I want it to be centered and left-align. How do I achieve this? */
list-style-position: inside;
}
li {
/* text-align: left; */
}
<ul style="list-style-type:none;">
<li><b>exercitation :</b> consectetur adipiscing elit</li>
<li><b>minima :</b> aliquip ex ea commodo consequat</li>
<li><b>commodi consequatur:</b> magni dolores eos</li>
</ul>