
commonMain.kotlinx.css.properties.LineHeight.kt Maven / Gradle / Ivy
package kotlinx.css.properties
import kotlinx.css.CssValue
import kotlinx.css.LinearDimension
class LineHeight(override val value: String) : CssValue(value) {
companion object {
val normal = LineHeight("normal")
val initial = LineHeight("initial")
val inherit = LineHeight("inherit")
}
}
val LinearDimension.lh get() = LineHeight(this.value)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy