Bootstrap popover width for popover-inner

前端 未结 10 1552
攒了一身酷
攒了一身酷 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:38

    .popover {
      max-width: 600px;
      width: auto;
    }
    

    change max-width to your desired value, You can also set min-width, if you wish

提交回复
热议问题