# -moz-orient

https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-orient

## block
```css
.selector {
  composes: block from 'hydrogencss/-moz-orient.css'
}
```

or:
```css
.selector {
  composes: block from 'hydrogencss/-moz-orient/block.css'
}
```

## horizontal
```css
.selector {
  composes: horizontal from 'hydrogencss/-moz-orient.css'
}
```

or:
```css
.selector {
  composes: horizontal from 'hydrogencss/-moz-orient/horizontal.css'
}
```

## inline
```css
.selector {
  composes: inline from 'hydrogencss/-moz-orient.css'
}
```

or:
```css
.selector {
  composes: inline from 'hydrogencss/-moz-orient/inline.css'
}
```

## vertical
```css
.selector {
  composes: vertical from 'hydrogencss/-moz-orient.css'
}
```

or:
```css
.selector {
  composes: vertical from 'hydrogencss/-moz-orient/vertical.css'
}
```

