# box-orient

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

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

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

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

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

## inherit
```css
.selector {
  composes: inherit from 'hydrogencss/box-orient.css'
}
```

or:
```css
.selector {
  composes: inherit from 'hydrogencss/box-orient/inherit.css'
}
```

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

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

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

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

