Editing CSS for PrimeNG Components

删除回忆录丶 提交于 2019-12-04 19:56:45

For inline PrimeNG styling, use something like this:

[style]="{'width': '100%'}"

To use styleClass simply add:

styleClass="example-css-class"

This way, for example, you can style multi select input field with many different style classes, eg. Bootstrap's form-control.

When you operate with PrimeNG ui's, be sure to put them into components .css. If you use global styles.css, you'll have to override the PrimeNG files in .angular-cli.json. You can do it by editing styles array like this:

"../node_modules/primeng/resources/primeng.min.css",
"../node_modules/primeng/resources/themes/omega/theme.css",
"styles.css"

When the styles.css are put after the primeng resources, it is loaded after the primeng's, which will override the styles.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!