Adding whitespace to beginning of a broken line

Is it possible to add a space to the beginning of a new line the way whitespace: pre-wrap preserves the whitespace at the end of the line?
No description
6 Replies
ἔρως
ἔρως4w ago
yeah, just add the space as an html entity however, if i understand it correctly
Jochem
Jochem4w ago
it won't move the space, but it'll look like it moved the space
ἔρως
ἔρως4w ago
i think he wants the opposite
wendel
wendel4w ago
p { text-indent: 15px; }
ἔρως
ἔρως4w ago
i think he wants something like this:
p::first-letter {
padding-left: 0.5ch;
}
p::first-letter {
padding-left: 0.5ch;
}