Check out example codes for "html list without bullets". It will help you in understanding the concepts better.
Code Example 1
list-style-type: none;
Code Example 2
ul {
list-style-type: none;
}
/* if you want to remove indentation , set padding: 0 and margin: 0 */
/* if you want inline code*/
<ul style="list-style: none;">
<li>...</li>
</ul>
Code Example 3
style="list-style-type:none;"
Code Example 4
#my-list-element {
list-style-type: none;
padding-left: 0px;
}
Learn ReactJs, React Native from akashmittal.com