Re: [csswg-drafts] [css-borders] allow multiple borders (#13044)

@bradkemper Your example is a bit confusing, since you only have 2 values for `border-style` defined. For compatibility reasons, and to deal with the fact that the initial value for `border-style` is none, I think that the number of listed `border-style` values should be what determines the number of borders.

So I would expect:

> ```css
> border-width: total-width(30px);
> border-color: red, black, white;
> border-style: solid, dashed;
> ```

To behave like:

```css
border-width: 15px, 15px;
border-color: red, block, /* ignored */ white;
border-style: solid, dashed;
```

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


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

Received on Monday, 22 December 2025 22:12:54 UTC