More properties

This commit is contained in:
2020-03-21 19:24:07 +01:00
parent c40616e691
commit 7a92e53006
14 changed files with 287 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
package nl.astraeus.css.properties
class PageBreak(
value: String
) : CssProperty(value) {
companion object {
fun auto() = PageBreak("auto")
fun always() = PageBreak("always")
fun avoid() = PageBreak("avoid")
fun left() = PageBreak("left")
fun right() = PageBreak("right")
fun initial() = PageBreak("initial")
fun inherit() = PageBreak("inherit")
}
}