Bootstrap popover width for popover-inner

前端 未结 10 1550
攒了一身酷
攒了一身酷 2020-12-29 18:48

I would like the have a Bootstrap Popover be wider. I read that this should work:

.popover-inner a {
   width: 600px;
}

But, the browser c

10条回答
  •  醉话见心
    2020-12-29 19:16

    If you want to control the minimum width of your popover window, just add an extra line in the css (or extra css) like this:

    .popover
    {
        min-width: 200px ! important;
    }
    

    (replace 200px with the desired value)

提交回复
热议问题