Re: [csswg-drafts] [css-ui-4] pointer-events should have a filtering capability (#6280)

I am trying to fix a case where I have table row link which is a sibling to the table cells to allow for nested anchor tags.
1. `pointer-events:none` to TableCells to allow for TableRowLink to get the click. 
2. `pointer-events:auto` to all interactive children of TableCells such as a, button etc
3. But HoverFilters needs to allow hover while letting the click pass through.

```
<TableRow>
    <TableRowLink />
    <TableCell />
    <TableCell />
    <TableCell>
        <HoverFilters />
    </TableCell />
```

I believe the proposal would have helped here
```
.HoverFilters {
  pointer-events: deny(click);
}
```

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


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

Received on Thursday, 2 October 2025 05:07:08 UTC