See Release Notes
Long Term Support Release
Differences Between: [Versions 39 and 401] [Versions 39 and 402] [Versions 39 and 403]
1 <?php 2 3 namespace Sabberworm\CSS\Property; 4 5 use Sabberworm\CSS\Renderable; 6 use Sabberworm\CSS\Comment\Commentable; 7 8 interface AtRule extends Renderable, Commentable { 9 // Since there are more set rules than block rules, we’re whitelisting the block rules and have anything else be treated as a set rule. 10 const BLOCK_RULES = 'media/document/supports/region-style/font-feature-values'; 11 // …and more font-specific ones (to be used inside font-feature-values) 12 const SET_RULES = 'font-face/counter-style/page/swash/styleset/annotation'; 13 14 public function atRuleName(); 15 public function atRuleArgs(); 16 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body