b2KIT

CSS Property Reference & Browser Support

Search CSS properties with syntax, values, browser support data, and interactive examples.

Tested tool guide Tested browser tools Checked August 16, 2026

What CSS Property Reference & Browser Support does and how it behaves

Enter a CSS property name to examine its syntax, recognized values, browser support data, and an interactive example in one reference entry. This helps determine both how to write the declaration and whether it is suitable for the browsers you target. The common mistake is treating overall property support as proof that every value, combination, element type, and layout context behaves identically. Compatibility can be finer-grained than the property name, so verify the exact declaration you intend to use.

How the result is produced

1

Property lookup

Search with a property name such as grid-template-columns or object-fit. Its reference entry presents the property's syntax and available values, allowing you to distinguish keywords, lengths, percentages, functions, and multi-part forms where applicable. Read the displayed grammar literally: alternatives, grouping, repetition markers, and value types describe valid combinations rather than punctuation that should be copied into a declaration.

2

Support and examples

The browser support information helps compare reported implementations before you rely on a property. Pair that information with the interactive example to see how one valid declaration affects rendering. An example demonstrates a particular case, not every permitted value or edge condition. Partial implementations, prefixed behavior, and value-specific differences can still require separate verification.

Good uses

  • Checking the permitted syntax before writing a grid-template-columns declaration.
  • Reviewing browser coverage for text-wrap before adding it to production CSS.
  • Using the interactive example to understand how object-fit changes a replaced element.

Limits and checks

  • Support for a property name does not necessarily establish support for every listed value or value combination.
  • A valid declaration can have no visible effect when the property does not apply to the element or the required layout context is absent.
  • Reported browser support does not reveal which browser versions are actually used by your audience.

Common questions

Can this tell me whether a declaration will work in every browser?

No. It reports support information for the CSS property, but a declaration can also depend on its exact value, browser version, element type, layout mode, and related declarations. Use the result to identify likely compatibility gaps, then test the complete rule in the browsers and versions relevant to your audience.

Why is a valid property not changing the page?

Validity only means the declaration conforms to CSS grammar. The property may not apply to that element, may require a particular formatting context, may be overridden by the cascade, or may compute to an unchanged result. Compare the reference syntax and example with the element's computed styles; this lookup cannot diagnose the rest of the stylesheet.

References and verification

The behavioral notes were checked against the browser implementation. Standards and primary references below define the relevant format, formula, or platform behavior.

Related Tools