More properties

This commit is contained in:
2020-03-18 19:27:17 +01:00
parent 5b557c8535
commit c40616e691
20 changed files with 564 additions and 392 deletions

View File

@@ -0,0 +1,15 @@
package nl.astraeus.css.properties
class Hyphens(
value: String
) : CssProperty(value) {
companion object {
fun none() = Hyphens("none")
fun manual() = Hyphens("manual")
fun auto() = Hyphens("auto")
fun initial() = Hyphens("initial")
fun inherit() = Hyphens("inherit")
}
}