Min-Height
Utilities for setting the minimum height of an element.
React props | CSS Properties |
---|---|
minHeight={size} | min-height: {size}; |
minH={size} | min-height: {size}; |
Scaled Min-Height
All values specified in the sizes
theme section are automatically applied. Note there is a little difference for scales between 0
and 1
due to conflicting with fluid range. You have to add a suffix s
to target values from theme, like 0.5
becomes 0.5s
and 1
becomes 1s
.
<x.div> <x.div minHeight="1s" h={0} /> <x.div minHeight={8} h={0} /> <x.div minHeight={12} h={0} /> <x.div minHeight={16} h={0} /> <x.div minHeight={24} h={0} /> </x.div>
Fixed Min-Height
Any valid value is accepted in width, numbers are converted to px
, other units have to be specified.
<x.div> <x.div minHeight={123} h={0} /> <x.div minHeight="12px" h={0} /> <x.div minHeight="4rem" h={0} /> <x.div minHeight="3ex" h={0} /> </x.div>
Fluid Min-Height
Values from 0
to 1
are converted into percentages. As a fraction or a number, both are an expression. Of course specifying [value]%
is also possible.
<x.div minHeight={1 / 2} w={0.1}> minHeight=1/2 </x.div> <x.div minHeight={0.5} w={0.7}> minHeight=0.5 </x.div>
Responsive
To control the margin of an element at a specific breakpoint, use responsive object notation. For example, adding the property minHeight={{ md: 1 }}
to an element would apply the minHeight={1}
utility at medium screen sizes and above.
<x.div minHeight={{ xs: 1 / 2, md: 1 }} />
For more information about xstyled's responsive design features, check out Responsive Design documentation.
Customizing
Sizes scale
f you'd like to customize your values for width, height, min-width, min-height, max-width, max-height, all at once, use the theme.sizes
section of your theme.
// theme.js export const theme = { sizes: { + sm: '8px', + md: '16px', + lg: '24px', + xl: '48px', }, }
Learn more about customizing the default theme in the theme customization documentation.
Edit this page on GitHub