How to write the horizontal dividing line of bootstrap?

how to write horizontal splitter lines in container by bootsrap, all visible areas should be opened, no left and right margins should be left, and the size should be self-adaptive

.
Mar.14,2021

use the < hr/ > tag directly.
then set css

hr {
  -moz-border-bottom-colors: none;
  -moz-border-image: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: -sharpEEEEEE -moz-use-text-color -sharpFFFFFF;
  border-style: solid none;
  border-width: 1px 0;
  margin: 18px 0;
}
Menu