Bootstrap 3 Horizontal Divider (not in a dropdown)

KeplerIO picture KeplerIO · Oct 26, 2014 · Viewed 277k times · Source

I know Bootstrap 3 has a horizontal divider you can place inside of dropdown menus to separate links like this:

<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu2">
  <li role="presentation" class="dropdown-header">Dropdown header</li>
   ...
  <li role="presentation" class="divider"></li>
</ul>

My question is: Is there any way to do this without it being in a dropdown, such as putting it into any kind of list or similar menu?

Answer

user3931708 picture user3931708 · Oct 26, 2014

Yes there is, you can simply put <hr> in your code where you want it, I already use it in one of my admin panel side bar.