Merge function-builder branch into master
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package nl.astraeus.css.properties
|
||||
|
||||
class HangingPunctuation(
|
||||
value: String
|
||||
) : CssProperty(value) {
|
||||
|
||||
companion object {
|
||||
val none = HangingPunctuation("none")
|
||||
val first = HangingPunctuation("first")
|
||||
val last = HangingPunctuation("last")
|
||||
val allowEnd = HangingPunctuation("allow-end")
|
||||
val forceEnd = HangingPunctuation("force-end")
|
||||
val initial = HangingPunctuation("initial")
|
||||
val inherit = HangingPunctuation("inherit")
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user