If a div is single-line, i want its height is 80px.
Else if it is multi-line, i want its padding-top-bottom is 20px.
I have tried to do this:
div {
min-height: 40px;
padding: 20px 0;
}
But,it works not well in the following single-line cases in the iPhone browser:
<div>中文abc</div>
<div>123abc</div>
If the innerHTML contains Chinese,the div's height will exceed 80px.
So,is there any other way?