ICssFontFaceRule
public interface ICssFontFaceRule : ICssRule, ICssNode, IStyleFormattable, ICssProperties, IEnumerable<ICssProperty>, IEnumerable
Represents a @font-face CSS rule.
using AngleSharp.Attributes;
using System.Collections;
using System.Collections.Generic;
namespace AngleSharp.Dom.Css
{
[DomName("CSSFontFaceRule")]
public interface ICssFontFaceRule : ICssRule, ICssNode, IStyleFormattable, ICssProperties, IEnumerable<ICssProperty>, IEnumerable
{
[DomName("family")]
string Family { get; set; }
[DomName("src")]
string Source { get; set; }
[DomName("style")]
string Style { get; set; }
[DomName("weight")]
string Weight { get; set; }
[DomName("stretch")]
string Stretch { get; set; }
[DomName("unicodeRange")]
string Range { get; set; }
[DomName("variant")]
string Variant { get; set; }
[DomName("featureSettings")]
string Features { get; set; }
}
}