Quote:
Originally Posted by Slevin#7
Afaik, EPUB2 would simply ignore the vh, since it just doesn't know about, right? And since flex also isn't supported by EPUB2, it just shouldn't do anything but displaying the content in its normal flow.
Btw, is that a typo in your answer with hv and wv, or are these proper units?
|
If you did something like
Code:
.height {
height: 100%;
height: 100vh;
}
the last height line would be the one used or ignored. Same goes for ePub3. So if you want ePub2 compatibility, vh and vw have to go. You cannot use them.