ICssMedium
Represents a CSS medium.
using System.Collections.Generic;
namespace AngleSharp.Dom.Css
{
public interface ICssMedium : ICssNode, IStyleFormattable
{
string Type { get; }
bool IsExclusive { get; }
bool IsInverse { get; }
string Constraints { get; }
IEnumerable<IMediaFeature> Features { get; }
}
}