IKeyframeSelector
Represents a CSS key text.
using AngleSharp.Css.Values;
using System.Collections.Generic;
namespace AngleSharp.Dom.Css
{
public interface IKeyframeSelector : ICssNode, IStyleFormattable
{
IEnumerable<Percent> Stops { get; }
string Text { get; }
}
}