Module Background.Position

include sig ... end
type horizontal = [
| `left
| `center
| `right
]
include sig ... end
val horizontalToJs : horizontal -> string
val horizontalFromJs : string -> horizontal option
include sig ... end
type vertical = [
| `top
| `center
| `bottom
]
include sig ... end
val verticalToJs : vertical -> string
val verticalFromJs : string -> vertical option
type t = [
| Global.t
| LengthPercent.t
| horizontal
| vertical
| `position of [ LengthPercent.t | horizontal ] * [ LengthPercent.t | vertical ]
]
val show : t -> string