- From: 一丝 via GitHub <sysbot+gh@w3.org>
- Date: Tue, 22 Oct 2024 14:56:56 +0000
- To: public-css-archive@w3.org
There is also a scenario where an internal element contains `margin/padding`, where lh can't set the exact number of rows needed.

```html
data:text/html;charset=UTF-8,<!DOCTYPE html>
<style>
.item {
border: 1px solid green;
width: 300px;
height: 4lh;
line-clamp: auto;
font-size: 16px;
line-height: 1.5;
}
p {
margin: 20px 0;
}
</style>
<div class="item">
<p>
It allows limiting the contents of a block container to the specified number of lines; remaining content is fragmented away and neither rendered nor measured. Optionally, it also allows inserting content into the last line box to indicate the continuity of truncated/interrupted content.
</p>
</div>
```
--
GitHub Notification of comment by yisibl
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10502#issuecomment-2429520531 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 22 October 2024 14:56:56 UTC