I want to have my own markup
<nav>
<my-list class="nav-justified">
    <item class="nav-item">Text 1</item>
    <item class="nav-item">Text 2</item>
</my-list>
</nav>
I cannot do that right now because bootstrap is targetting LIs inside by the element name only and not by a class
for example
.nav-justified {
  width: 100%;
  > li {
    float: none;
    > a {
      text-align: center;
      margin-bottom: 5px;
    }
  }
any ideas?
 
     
    