This should work in Opera:
.example { font-family: Arial; font-size: 12px; } .example, .example * { line-height: 1.5em; }
For Firefox or IE, adding the following rule will result in a different line height for each element, but will break the text stream:
.example * { display:inline-block; }
source share