public interface IShorthandResolver
CSS shorthand is a group of CSS properties that allow values of multiple properties to be set simultaneously. These values are separated by spaces. For example, the border property is shorthand for the border-width, border-style, and border-color properties. So in CSS, border: 5px solid red; would specify a border that’s five px wide, solid, and red.
| Modifier and Type | Method and Description |
|---|---|
List<CssDeclaration> |
resolveShorthand(String shorthandExpression)
Resolves a shorthand expression.
|
List<CssDeclaration> resolveShorthand(String shorthandExpression)
shorthandExpression - the shorthand expressionCopyright © 1998–2025 Apryse Group NV. All rights reserved.