DEV Community

Salah Hasanin
Salah Hasanin

Posted on

Answer: How to set width on dropdown item in bootstrap?

There is a min-width on the dropdown menu in bootstrap. You can reset it like this:

.dropdown-menu {
  min-width:inherit;
}

Top comments (0)