Answers for "how to use bootstrap 4 popover"

0

bootstrap popover style width

.popover{
    max-width: 100%; 
    /* Max Width of the popover (depending on the container!) */
}
Posted by: Guest on July-16-2020
0

bootstrap 4 popover content from div

.popover-html ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.popover-html ul li {  
    display: inline-block;
    white-space: nowrap;
    width: 33%;
}

.popover-html ul li + li {
  padding-left: 5px;
}
Posted by: Guest on July-07-2020

Code answers related to "how to use bootstrap 4 popover"

Browse Popular Code Answers by Language