I am using PrimeNG dropdown and was trying to remove the dropdown toggle icon. I've tried using css, but still doesn't work, maybe I am doing it wrong. Please help.
Asked
Active
Viewed 2,164 times
2 Answers
1
Maybe your CSS is overwritten by PrimeNG itself. You have to load yours after it.
This should do the trick :
.ui-dropdown-trigger {
display: none;
}
See styles.css
file in that demo.

Antikhippe
- 6,316
- 2
- 28
- 43