Re: [csswg-drafts] [css-ui] Two different colours for a "double" style outline

I suppose that in level 4, we could either:
* extend outline-color to take two values, the second of which is applied to the second line of outline-style:double
* extend all outline properties to take 1 or n values instead of 1, and when you supply several, you end up with several outlines.
  ```css
.rainbow {
  outline: solid red, solid orange 3px, dashed yellow 1px, dotted green 5px, blue double, indigo grove, solid violet;
}
  ```
  The same logic could apply to borders (which would indeed consume more space).

The second solution is overkill if all you want is two solid outlines of different colors to maintain contrast, I think there's been quite some demand for multiple borders and outlines over the years, so maybe we should go that way.

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

Received on Friday, 7 April 2017 06:29:41 UTC