# height

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

## auto
```css
.selector {
  composes: auto from 'hydrogencss/height.css'
}
```

or:
```css
.selector {
  composes: auto from 'hydrogencss/height/auto.css'
}
```

## available
```css
.selector {
  composes: available from 'hydrogencss/height.css'
}
```

or:
```css
.selector {
  composes: available from 'hydrogencss/height/available.css'
}
```

## fit-content
```css
.selector {
  composes: fit-content from 'hydrogencss/height.css'
}
```

or:
```css
.selector {
  composes: fit-content from 'hydrogencss/height/fit-content.css'
}
```

## max-content
```css
.selector {
  composes: max-content from 'hydrogencss/height.css'
}
```

or:
```css
.selector {
  composes: max-content from 'hydrogencss/height/max-content.css'
}
```

## min-content
```css
.selector {
  composes: min-content from 'hydrogencss/height.css'
}
```

or:
```css
.selector {
  composes: min-content from 'hydrogencss/height/min-content.css'
}
```

