Why in CSS with an "italic" class the text becomes smaller?
In a html-file I have paragraphs with text. I have a CSS-file, with some classes.I have set up "p" with:
p {
font-family:Verdana, sans-serif;
font-size:0.833em; /* and so on*/
}
.italic {
font-family:Verdana, sans-serif;
font-size:0.833em;
font-style:italic;
font-weight:normal;
}
.rientro {
margin-bottom:4px;
}
I have: <p class="rientro"><span class="italic">text,text</span></p>, the text is malles then the "normal" text, without italic, why?
