View Single Post
Old 01-27-2020, 02:26 PM   #81
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 79,796
Karma: 146391129
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Argon View Post
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.
JSWolf is offline   Reply With Quote