AngleSharp.Css
AngleSharp.Css copied to clipboard
Make CssRotateValue ect. to public
Description
When I tried to get the angle value from CSS definition "transform: rotate(-45deg)". The code expected may be
var transform = css.GetProperty(PropertyNames.Transform); if (transform.RawValue is CssTupleValue<ICssValue> tt) { var rotateItem = tt.Items.FirstOrDefault(item => item is CssRotateValue) as CssRotateValue; }
But the CssRotateValue currently is internal. Maybe I am right, is there any alternative to do that?
Background
No response
Specification
No response