Declaration

data class Declaration(val location: CssLocation, val important: Boolean, val property: String, val values: List<Value>) : CssComponentValueNode(source)

A CSS declaration.

Constructors

Link copied to clipboard
constructor(location: CssLocation, important: Boolean, property: String, values: List<Value>)

Properties

Link copied to clipboard

Whether the property's value is marked as important.

Link copied to clipboard
open override val location: CssLocation
Link copied to clipboard

The property name.

Link copied to clipboard

The property values.

Functions

Link copied to clipboard
open override fun toString(): String
open override fun toString(indent: Int): String