“Bootstrap 4 Popover Content от div” Ответ

Bootstrap Popover на динамическом элементе

var popOverSettings = {
    placement: 'bottom',
    container: 'body',
    html: true,
    selector: '[rel="popover"]', //Sepcify the selector here
    content: function () {
        return $('#popover-content').html();
    }
}

$('body').popover(popOverSettings);
Alberto Peripolli

Bootstrap 4 Popover Content от 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;
}  
Vivacious Vendace

Ответы похожие на “Bootstrap 4 Popover Content от div”

Вопросы похожие на “Bootstrap 4 Popover Content от div”

Больше похожих ответов на “Bootstrap 4 Popover Content от div” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования