AngleSharp.Css icon indicating copy to clipboard operation
AngleSharp.Css copied to clipboard

Make CssRotateValue ect. to public

Open garryxiao opened this issue 1 year ago • 0 comments

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

garryxiao avatar Apr 29 '24 00:04 garryxiao