【发布时间】:2018-12-27 18:17:57
【问题描述】:
【问题讨论】:
-
你对 typeahead 下拉菜单的意思是什么是我输入的中心。
-
我的意思是这样的joxi.ru/82383oJCJ4gGyA
标签: angular ngx-bootstrap typehead
【问题讨论】:
标签: angular ngx-bootstrap typehead
看起来无法在 ng-bootstrap 中更改 position setting
所以我使用 CSS 来覆盖它,但是使用它需要小心,避免有太多 !important 语法
app.component.css
// :host => only work in app.component.css
// :host ::ng-deep => look for selector `typeahead-container.dropdown-menu` in `app.component.css`
:host ::ng-deep typeahead-container.dropdown-menu {
left: 50%!important;
transform: translateX(-50%);
}
/*
// it will be compiled to this
[_nghost-c0] typeahead-container.dropdown-menu {
left: 50%!important;
transform: translateX(-50%);
}
*/
【讨论】: