Dil*_*ush 3 html css twitter-bootstrap bootstrap-popover
我有一个尺寸为的列
width:30px 和 height:25px
如果弹出窗口被触发,该列只有一个按钮,它的宽度缩放到列的宽度...有人知道如何增加弹出窗口的宽度吗?
width:100px 和 height:50
我使用了以下css代码
.popover{
widht:100px;
height:50px;
overflow:visible;
}
Run Code Online (Sandbox Code Playgroud)
我在Bootstrap 4 Beta版上测试的解决方案:
.popover {
min-width: 30em !important;
}
Run Code Online (Sandbox Code Playgroud)