我想使用PrimeNG's PickList,并希望将其与我的UI一起居中。可悲的是我无法弄清楚该怎么做。我尝试通过css类和[style]
标签访问它,但对我来说都没有用。
<p-pickList [source]="sourceList" [target]="targetList" [responsive]="true"
filterBy="name" dragdrop="true" dragdropScope="employee" [sourceStyle]="{'height':'300px'}" [targetStyle]="{'height':'300px'}"
[style]="{'text-align': 'center'}" [showSourceControls]="false" [showTargetControls]="false">
//...
</p-pickList>
有人可以告诉我如何解决这个问题吗?