More properties, cleanup
This commit is contained in:
14
src/commonMain/kotlin/nl/astraeus/css/properties/Caption.kt
Normal file
14
src/commonMain/kotlin/nl/astraeus/css/properties/Caption.kt
Normal 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")
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user