如何在bootstrap 4中更改popover的大小?我尝试使用HTML,但它对我不起作用。
我正在使用:
<ng-template #popContent popoverClass="T">
答案 0 :(得分:4)
根据您的使用情况,您有两个选项:
.popover
类定位元素并覆盖max-width
属性。示例:
@Component({
selector: 'ngbd-popover-basic',
templateUrl: 'src/popover-basic.html',
styles: [`
:host >>> .popover {
max-width: 500px;
}
`]
})
export class NgbdPopoverBasic {
}
plunker中一个完整的例子:http://plnkr.co/edit/XHK5lN6VZlp2vwlEsKBS?p=preview
答案 1 :(得分:0)
添加:
:host /deep/ .popover{
left: 0% !important;
width: 100% !important;
max-width: 500px !important;
}
它会给你警告,但工作完美。
要记住:在component.ts文件中,您可以使用外部CSS或样式组件