More properties

This commit is contained in:
2020-02-10 20:28:57 +01:00
parent 1b83f88c8f
commit 1c3ac8f0d0
14 changed files with 229 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
package nl.astraeus.css
enum class All(
val value: String
) : CssProperty {
INITIAL("initial"),
INHERIT("inherit"),
UNSET("unset"),
;
override fun css(): String = value
}