I am trying to figure out how to turn off the font:inherit
property in Ionic's global CSS. This property is causing issues when I try to style text using ng-bind-html
, as it adds unnecessary classes to elements like i
and bold
. I attempted to override it with this CSS:
p {
all: revert;
}
However, my solution doesn't seem to be working.