CssBackgroundAttachmentProperty
More information available at:
https://developer.mozilla.org/en-US/docs/Web/CSS/background-attachment
Gets an enumeration with the desired attachment settings.
using AngleSharp.Css;
using AngleSharp.Extensions;
namespace AngleSharp.Dom.Css
{
internal sealed class CssBackgroundAttachmentProperty : CssProperty
{
private static readonly IValueConverter AttachmentConverter = Converters.BackgroundAttachmentConverter.FromList().OrDefault(BackgroundAttachment.Scroll);
internal override IValueConverter Converter => AttachmentConverter;
internal CssBackgroundAttachmentProperty()
: base(PropertyNames.BackgroundAttachment, PropertyFlags.None)
{
}
}
}