Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Opera mini doesn't support line-height

Tags:

css

opera-mini

I've designed a website. However, line-height is not working in Opera Mini.

.lbl-name {
    height: 30px;
    line-height:30px;
}

How can I fix this?

like image 766
sertacyarbas Avatar asked Jul 02 '26 21:07

sertacyarbas


1 Answers

Opera Mini miss all line-height's values and render all with line-height: normal. I can't find proof any link, but on my developing experience(5 years support mobile sites, and for opera mini too) this is true.

EDIT (add proof link):

Opera Mini use system fonts for render texts, because a lot of devices can't render none-system fonts. So it do not apply font-size/line-height CSS properties.

like image 131
Pinal Avatar answered Jul 04 '26 19:07

Pinal