bootstrap ul no bullets code example
Example 1: remove ul decoration
ul {
list-style-type: none;
}
Example 2: bootstrap ul no style
<ul class="list-unstyled">
<li>...</li>
</ul>
ul {
list-style-type: none;
}
<ul class="list-unstyled">
<li>...</li>
</ul>