More properties, cleanup

This commit is contained in:
2020-02-28 19:47:14 +01:00
parent b92b16f1b8
commit ba58deeaf5
8 changed files with 224 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
package nl.astraeus.css.properties
class CaptionSide(
value: String
): CssProperty(value) {
companion object {
fun top() = BoxSizing("top")
fun bottom() = BoxSizing("bottom")
fun initial() = BoxShadow("initial")
fun inherit() = BoxShadow("inherit")
}
}