Bootstrap popover width for popover-inner

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

    Some answer herein recommend just making the popover class a certain width. This is no good, because it affects all popovers. Use something like this instead, something more targeted:

    .container-div .popover {
        /* add styles here */
    }
    

提交回复
热议问题