Quote:
Originally Posted by DrChiper
Thats a great find
I had recently the same issue, but solved it in the CSS itself, so it also works on other devices:
Code:
body {
font-family: serif;
margin: 0 1%;
orphans: 1;
widows: 1;
}
p, div {
font-size: 1em;
text-align: justify;
orphans: 1;
widows: 1;
}
|
You don't need widows and orphans any other place in the CSS but body. Also, you don't need a font size of 1em. 1em is the default font size. And you don't need justify except in body. And don't use % for a margin as it changes based on the screen/window size.