Quote:
Originally Posted by Argon
Attached are, respectively, quick pictures of my Kindle with A Fire Upon the Deep—which I'm using as a reference standard, whose style sheet says 5%—and The Wandering Inn with this globally added (as well as a line-height adjustment):
Code:
p {
text-indent: 0%
}
p + p {
text-indent: 5%
}
https://imgur.com/gallery/Tsldhwi
The Wandering Inn's indentation looks bigger to me, and A Fire Upon the Deep's doesn't look like 1.6em to me. What do you think?
|
That sort of code can make looking at the HTML code more difficult. If you have <p> as...
Code:
p {
margin-top: 0;
margin-bottom: 0;
text-indent: 1.2em;
}
Then you'll see when <p> has no indent when you see <p class="noindent">. Most <p> will be with an indent.