Re: [csswg-drafts] [css-ui] Pseudo-element for select's UA button (#10717)

> Is there a way we could make the non-inherited properties that would affect the box of the <select> to all be delegated to the fallback <button> instead, like borders?

```
select {
    display: contents !important;
}
 
#fallback-button {
   all: inherit;
   display: inline-block;
}
```

is what I can think of, but it wouldn't pass over the `display` value from the select.

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


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

Received on Friday, 9 August 2024 23:25:06 UTC