Files
kotlin-css-generator/src/commonMain/kotlin/nl/astraeus/css/properties/TableLayout.kt
2021-05-11 17:26:08 +02:00

15 lines
276 B
Kotlin

package nl.astraeus.css.properties
class TableLayout(
value: String
) : CssProperty(value) {
companion object {
val auto = TableLayout("auto")
val fixed = TableLayout("fixed")
val initial = TableLayout("initial")
val inherit = TableLayout("auto")
}
}