Beginner’s question here. <em> and <i> don’t give me italics. What gives?
1 Like
I am wondering the same thing. I don’t get why that would be set as default in the css and take away the semantics.
yeah you guys right, i just realized that problem when my client said why there is no italic in the text.
I think it’s because rule in ionic.min.css
em, ... {
font:inherit;
}
Then just add custom css rule on your stylesheet.
em,i{
font-style:italic;
}
1 Like