kobolabs / epub-spec

Details on the elements of the ePub spec that Kobo supports, as well as other information on the Kobo reading platforms.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vh and vw unit does not works on eink kobo

mrbbp opened this issue · comments

commented

kobo aura 4.20.14622 + kepub extension

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: black;
}
main {
  position: absolute;
  background-color: white;
  color: black;
  width: calc(100vw - 2rem);
  height: calc(100vh - 2rem);
  margin: 1rem;
}

if i use width: calc(100% - 2rem);, it works!

commented

if i use height: 50vh;. It does not works better;