How to change the width of bootstrap popover

Dilkush picture Dilkush · Jun 3, 2016 · Viewed 9.5k times · Source

I Have a column whose dimensions are

width:30px and height:25px

The column bears only one button if the popover is triggered, It's width scales to the width of column ... Can someone know how to increase the width of the popover?

width:100px and height:50

I have used the following css code

.popover{
    widht:100px;
    height:50px;
    overflow:visible;
}

Answer

vzR picture vzR · Aug 18, 2017

A solution I tested on the Bootstrap 4 Beta version:

.popover {
        min-width: 30em !important;
}