Re: [csswg-drafts] [css-text] Preventing too-short final lines of blocks (Last Line Minimum Length) (#3473)

I want to add my two cents to push this conversation further. The following HTML after being "prettified" will break:
```html
<blockquote>
    Lorem ipsum then prettify will push closing tag to a new line
</blockquote>
```
And in CSS, this quotation mark might appear on a new line, and there is no way around it, except to disable prettifying code and making sure blockquote ends on the same HTML line of code. I wish there was a way to target `:last-line` the way we target `:first-line`.
```css
blockquote:after {
    content: '"'
}
```

-- 
GitHub Notification of comment by ayyash
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3473#issuecomment-1159400508 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Saturday, 18 June 2022 08:53:37 UTC