Re: [csswg-drafts] [css-pseudo] Suggest a pseudo element that wraps all of its content (#11312)

Seems a duplicate of #2406, with nesting

```css
.example {
  display: block;
  padding: 5px;
  background-color: #ddd;
  border-radius: 15px;
}
.example::content {
  display: block;
  justify-self: center;
  padding: 5px;
  background-color: #eee;
  text-align: left;
  line-height: 1.5;
  border-radius: 10px;
}
.example::content::content {
  display: inline;
  background-color: #fff;
  border-radius: 5px;
}
```

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


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

Received on Tuesday, 3 December 2024 15:59:51 UTC