- From: Kenneth Hoff via GitHub <sysbot+gh@w3.org>
- Date: Wed, 24 Jul 2024 08:18:47 +0000
- To: public-css-archive@w3.org
Am I right in understanding that if/when this feature is generally available, using a comma-separator is more-or-less superceded by semicolon-separator? Everywhere we currently use comma we should use semicolon in order to make it less ambiguous? As in, they are entirely interchangeable except that the semicolon-separator additionally allows for "inline parameter list" using the now-available comma? ```css // Old style padding: 10,10,10,10; // New and improved style padding: 10;10;10;10; ``` -- GitHub Notification of comment by KennethHoff Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9539#issuecomment-2247194290 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 24 July 2024 08:18:47 UTC