Hi guys, I find if the margin of whole text (body) in CSS is set to 0 like this:
we can get a correct full screen reading without words cut-off.
To modify CSS, the body code section must be known, like this:
so the margin setting will be added to "calibre" section in CSS like this:
and we get the correct display of full screen reading for kepub.:D
this can be done when kepub is converted by Calibre. it needs to change output setting to prevent Calibre add itself margin. The setting is in Page Setup and you need to set the four margins to zero or unchanged. Then you can do the conversation.
Code:
margin: 0 0 0 0
To modify CSS, the body code section must be known, like this:
Code:
<body class="calibre">
</body>
Code:
.calibre {
display: block;
font-size: 1em;
padding-left: 0;
padding-right: 0;
text-align: justify;
margin: 0 0 0 0
}
this can be done when kepub is converted by Calibre. it needs to change output setting to prevent Calibre add itself margin. The setting is in Page Setup and you need to set the four margins to zero or unchanged. Then you can do the conversation.