AngleSharp.Css 1.1.0-beta.277

logo

AngleSharp.Css

CI GitHub Tag NuGet Count Issues Open CLA Assistant

AngleSharp.Css extends the core AngleSharp library with some more powerful CSS capabilities. This repository is the home of the source for the AngleSharp.Css NuGet package.

Basic Configuration

If you just want a configuration that works (as close as possible to real browsers) you should use the following code:

var config = Configuration.Default
    .WithCss(); // from AngleSharp.Css

This will register a parser for CSS related content. The CSS parsing options and more could be set with parameters of the WithCss method. Alternatively, all the (desired) parts may be registered individually as well. That mostly boils down to three elementary parts:

  • A CSS parser (implementing the ICssParser interface, e.g., CssParser)
  • A factory for creating CSS declarations (IDeclarationFactory)
  • The styling service that can handle CSS documents, see CssStylingService

For an interactive DOM (i.e., to handle style attribute changes in the HTML document) an observer needs to be registered as well.

Furthermore, for some CSSOM features (e.g., media queries) a render device is required.

var config = Configuration.Default
    .WithCss()
    .WithRenderDevice(new DefaultRenderDevice
    {
        DeviceHeight = 768,
        DeviceWidth = 1024,
    });

If no specific IRenderDevice (e.g., via creating an DefaultRenderDevice object) instance is created a default implementation will be set.

The render device also carries the user preferences of the Media Queries Level 5 (and Level 4) user-preference features. DefaultRenderDevice implements IRenderDevicePreferences for that, and any custom IRenderDevice can implement it as well. The dictionary is keyed by the media feature name and holds the keyword that the feature should answer with:

var config = Configuration.Default
    .WithCss()
    .WithRenderDevice(new DefaultRenderDevice
    {
        Preferences = new Dictionary<String, String>
        {
            { "prefers-color-scheme", "dark" },
            { "prefers-reduced-motion", "reduce" },
        },
    });

With this device @media (prefers-color-scheme: dark) applies in the cascade and window.MatchMedia("(prefers-color-scheme: dark)").IsMatched is true. A key that is not set leaves its media feature unknown, i.e., a query using it never matches. The keys a browser would set are:

Key Keywords
prefers-color-scheme light, dark
prefers-reduced-motion no-preference, reduce
prefers-reduced-transparency no-preference, reduce
prefers-contrast no-preference, more, less, custom
prefers-reduced-data no-preference, reduce
forced-colors none, active
hover, any-hover none, hover
pointer, any-pointer none, coarse, fine
display-mode fullscreen, standalone, minimal-ui, browser

The value is compared to the queried keyword case insensitively, so a keyword that is newer than this library works as well. Used without a value, e.g., @media (prefers-reduced-motion), the feature evaluates in a boolean context, where no-preference (and none for forced-colors, hover, any-hover, pointer and any-pointer) is false. Without a preference hover and pointer keep answering as they did before, i.e., as a device with no input mechanism.

Going a bit further it is possible to Render the current document. This render tree information can then be used to retrieve or other information, e.g.,

var tree = document.DefaultView.Render();
var node = tree.Find(document.QuerySelector("div"));
await node.DownloadResources();

The previous snippet renders the current document. Afterwards it retrieves a particular render tree node, which is related to the first found div. Then all (CSS introduced) resources are downloaded for the node, if visible.

Advantages of AngleSharp.Css

The core library already contains the CSS selector parser and the most basic classes and interfaces for dealing with the CSSOM. AngleSharp.Css brings the following advantages and use cases to life:

  • Correct identification of edge cases
  • A live CSSOM model, i.e., callbacks and everything
  • Computing the styling of certain elements
  • Cascades of stylesheets
  • Validation (and property-based exposure) of CSS declarations
  • Responsive design considerations
  • Full access to the value with different converters

The main idea behind AngleSharp.Css is to expose the CSSOM as it would be in the browser (and potentially beyond, i.e., useful for being used by editors). Originally, most of the code found here was embedded in the AngleSharp.Core library, however, due to the overhead for HTML use cases it was decided to transfer the code into its own repository.

Features

  • Feature validators (e.g., for @supports)
  • Document functions (e.g., for domain)
  • Pseudo elements (e.g., ::before)
  • Declarations (e.g., display) incl. knowledge of their values
  • Dynamic DOM coupling (i.e., to react to style attribute changes)
  • CSS custom properties (also known as CSS variables) with extensibility
  • Media queries and all other commonly implemented rules
  • Calculated values (i.e., calc(20px + 50%))
  • Window-based declaration calculations, see window.GetComputedStyle

Benchmarks

The AngleSharp.Performance.Css project uses BenchmarkDotNet to compare CSS parsing performance across libraries. Run the benchmarks in Release mode:

dotnet run --project src/AngleSharp.Performance.Css/AngleSharp.Performance.Css.csproj -c Release --framework net10.0

To run a quick smoke test instead of a full benchmark:

dotnet run --project src/AngleSharp.Performance.Css/AngleSharp.Performance.Css.csproj -c Release --framework net10.0 -- --job short

Participating

Participation in the project is highly welcome. For this project the same rules as for the AngleSharp core project may be applied.

If you have any question, concern, or spot an issue then please report it before opening a pull request. An initial discussion is appreciated regardless of the nature of the problem.

Live discussions can take place in our Gitter chat, which supports using GitHub accounts.

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.

For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

License

AngleSharp.Css is released using the MIT license. For more information see the license file.

Showing the top 20 packages that depend on AngleSharp.Css.

Packages Downloads
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
46
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
43
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
40
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
37
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
36
HtmlSanitizer
Cleans HTML from constructs that can be used for cross site scripting (XSS)
35
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
35
HtmlSanitizer
Cleans HTML from constructs that can be used for cross site scripting (XSS)
34
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
34
HtmlSanitizer
Cleans HTML from constructs that can be used for cross-site scripting (XSS)
33

.NET 10.0

.NET Framework 4.6.2

.NET Framework 4.7.2

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
1.1.0-beta.277 1 09/04/2026
1.1.0-beta.276 2 09/04/2026
1.1.0-beta.273 1 09/03/2026
1.0.2 14 08/23/2026
1.0.2-beta.272 2 09/02/2026
1.0.2-beta.271 3 09/02/2026
1.0.2-beta.265 16 08/20/2026
1.0.1 14 07/31/2026
1.0.1-beta.264 18 08/20/2026
1.0.1-beta.262 19 08/13/2026
1.0.1-beta.260 15 08/08/2026
1.0.1-beta.258 12 08/05/2026
1.0.1-beta.256 11 08/01/2026
1.0.1-beta.252 13 07/31/2026
1.0.1-beta.250 13 07/31/2026
1.0.1-beta.247 15 07/31/2026
1.0.1-beta.245 20 07/31/2026
1.0.0 13 07/27/2026
1.0.0-beta.244 14 07/29/2026
1.0.0-beta.243 15 07/28/2026
1.0.0-beta.239 13 07/25/2026
1.0.0-beta.237 14 07/25/2026
1.0.0-beta.231 20 07/25/2026
1.0.0-beta.228 17 07/22/2026
1.0.0-beta.226 13 07/22/2026
1.0.0-beta.224 20 07/20/2026
1.0.0-beta.222 17 07/20/2026
1.0.0-beta.216 40 05/14/2026
1.0.0-beta.213 37 04/01/2026
1.0.0-beta.211 42 03/29/2026
1.0.0-beta.209 36 03/29/2026
1.0.0-beta.204 42 03/29/2026
1.0.0-beta.202 40 03/29/2026
1.0.0-beta.199 42 03/29/2026
1.0.0-beta.197 40 03/29/2026
1.0.0-beta.195 31 03/29/2026
1.0.0-beta.189 34 03/29/2026
1.0.0-beta.186 41 03/29/2026
1.0.0-beta.184 39 03/29/2026
1.0.0-beta.178 46 03/28/2026
1.0.0-beta.176 25 03/29/2026
1.0.0-beta.167 51 01/17/2026
1.0.0-beta.164 42 12/10/2025
1.0.0-beta.159 44 12/10/2025
1.0.0-beta.157 39 12/13/2025
1.0.0-beta.154 47 12/09/2025
1.0.0-beta.151 43 12/13/2025
1.0.0-beta.149 49 12/12/2025
1.0.0-beta.147 32 12/09/2025
1.0.0-beta.144 41 12/13/2025
1.0.0-beta.139 47 12/10/2025
1.0.0-beta.137 43 12/13/2025
1.0.0-beta.130 41 01/01/2026
1.0.0-beta.127 31 12/09/2025
1.0.0-beta.122 42 12/22/2025
1.0.0-alpha-99 28 12/10/2025
1.0.0-alpha-98 46 12/20/2025
1.0.0-alpha-97 36 12/12/2025
1.0.0-alpha-117 49 12/13/2025
1.0.0-alpha-113 37 12/09/2025
1.0.0-alpha-111 45 12/15/2025
1.0.0-alpha-109 50 01/09/2026
1.0.0-alpha-108 30 12/10/2025
1.0.0-alpha-107 39 12/09/2025
1.0.0-alpha-106 37 12/15/2025
1.0.0-alpha-104 42 12/16/2025
1.0.0-alpha-103 30 12/10/2025
1.0.0-alpha-102 37 12/18/2025
1.0.0-alpha-101 42 12/16/2025
1.0.0-alpha-100 41 12/15/2025
0.18.0 13 07/25/2026
0.18.0-beta.233 13 07/25/2026
0.17.0 48 12/15/2025
0.17.0-alpha-87 41 12/09/2025
0.17.0-alpha-86 49 12/10/2025
0.17.0-alpha-80 38 12/13/2025
0.17.0-alpha-78 44 12/21/2025
0.17.0-alpha-77 32 12/09/2025
0.17.0-alpha-76 36 12/24/2025
0.17.0-alpha-75 45 12/09/2025
0.16.4 34 12/11/2025
0.16.4-alpha-72 40 12/14/2025
0.16.4-alpha-68 28 01/01/2026
0.16.3 40 12/09/2025
0.16.3-alpha-65 36 12/09/2025
0.16.2 41 01/02/2026
0.16.2-alpha-62 38 12/09/2025
0.16.2-alpha-61 34 12/24/2025
0.16.2-alpha-60 36 01/01/2026
0.16.2-alpha-42 34 12/09/2025
0.16.2-alpha-35 26 12/14/2025
0.16.2-alpha-30 28 01/17/2026
0.16.2-alpha-29 42 12/11/2025
0.16.2-alpha-28 28 01/01/2026
0.16.1 38 12/12/2025
0.16.1-alpha-27 42 12/09/2025
0.16.1-alpha-24 38 12/21/2025
0.16.0 32 01/09/2026
0.16.0-alpha-23 40 12/12/2025
0.16.0-alpha-19 43 12/11/2025
0.15.1 39 01/17/2026
0.15.1-alpha-13 44 01/01/2026
0.15.1-alpha-11 35 12/15/2025
0.15.0 33 12/19/2025
0.15.0-alpha-7 41 12/15/2025
0.14.3-alpha-5 25 12/12/2025
0.14.3-alpha-4 29 12/20/2025
0.14.3-alpha-166 40 12/15/2025
0.14.3-alpha-165 41 12/10/2025
0.14.2 38 12/24/2025
0.14.2-alpha-163 34 12/09/2025
0.14.2-alpha-162 40 12/20/2025
0.14.1 40 01/01/2026
0.14.1-alpha-161 44 12/15/2025
0.14.0 44 12/13/2025
0.14.0-alpha-160 41 12/14/2025
0.14.0-alpha-154 38 01/09/2026
0.14.0-alpha-152 37 01/01/2026
0.14.0-alpha-149 47 01/01/2026
0.14.0-alpha-147 37 12/14/2025
0.14.0-alpha-145 48 12/22/2025
0.14.0-alpha-143 37 12/09/2025
0.14.0-alpha-139 38 12/15/2025
0.14.0-alpha-138 40 01/09/2026
0.13.0 38 12/24/2025
0.13.0-alpha-135 39 01/09/2026
0.13.0-alpha-131 46 12/10/2025
0.13.0-alpha-123 31 12/09/2025
0.13.0-alpha-121 34 01/23/2026
0.13.0-alpha-119 40 12/22/2025
0.13.0-alpha-117 34 01/01/2026
0.13.0-alpha-116 39 12/19/2025
0.13.0-alpha-115 39 12/22/2025
0.13.0-alpha-114 40 12/14/2025
0.13.0-alpha-113 43 12/09/2025
0.12.1 35 12/30/2025
0.12.0 42 12/09/2025
0.10.0 39 12/09/2025