简体中文
CSS 属性 min-height 能够设置元素的最小高度。这样能够防止 height 属性的应用值小于 min-height 的值。
| Web | Android | iOS | HarmonyOS | HarmonyOS(Vapor) |
|---|---|---|---|---|
| 4.0 | 3.9 | 4.11 | 4.61 | 5.0 |
min-height: <viewport-length>;
| 名称 | 兼容性 | 描述 |
|---|---|---|
| fit-content | 元素的高度将自动调整为适应内容的大小,但不会小于内容的最小高度 min-content 值。 | |
| max-content | 元素的最小高度不会小于内容的最大高度。 | |
| min-content | 元素的最小高度不会小于内容的最小高度。 | |
| auto | 浏览器将通过计算为指定元素选择一个 min-height 值。 | |
| none | 不限制盒容器的尺寸。 |
| 平台 | 默认值 |
|---|---|
| uvue | 0px |
注意:W3C 默认值为:auto
示例为hello uni-app x alpha分支,与最新HBuilderX Alpha版同步。与最新正式版同步的master分支示例另见
示例
<template>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view style="flex-grow: 1;">
<view>
<text>min-height: 150px</text>
<view class="common" style="min-height: 150px;">
<text>height: 50px</text>
</view>
<text>拍平</text>
<view class="common" style="min-height: 150px;" flatten>
<text>height: 50px</text>
</view>
</view>
<view class="uni-common-mt">
<text class="uni-title-text">setProperty 设置与 getPropertyValue 获取 min-height </text>
</view>
<!-- 普通版本 -->
<view class="test-container">
<view class="test-item">
<text class="uni-subtitle-text">view 组件</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActual}}</text>
<view class="test-box">
<view ref="viewRef" class="common-dynamic test-view" :style="{ minHeight: minHeight }">
<text>view</text>
</view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActualText}}</text>
<view class="test-box">
<text ref="textRef" class="common-dynamic test-text" :style="{ minHeight: minHeight }">text</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActualImage}}</text>
<view class="test-box">
<image ref="imageRef" class="common-dynamic test-image" :style="{ minHeight: minHeight }" src="/static/test-image/logo.png"></image>
</view>
</view>
</view>
<!-- 拍平版本 -->
<view class="test-container">
<view class="test-item">
<text class="uni-subtitle-text">view 组件拍平</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActualFlat}}</text>
<view class="test-box">
<view ref="viewRefFlat" class="common-dynamic test-view-flatten" :style="{ minHeight: minHeight }" flatten>
<text>view</text>
</view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件拍平</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActualTextFlat}}</text>
<view class="test-box">
<text ref="textRefFlat" class="common-dynamic test-text-flatten" :style="{ minHeight: minHeight }" flatten>text</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件拍平</text>
<text class="uni-info">设置值: {{minHeight}}</text>
<text class="uni-info">获取值: {{minHeightActualImageFlat}}</text>
<view class="test-box">
<image ref="imageRefFlat" class="common-dynamic test-image-flatten" :style="{ minHeight: minHeight }" flatten src="/static/test-image/logo.png"></image>
</view>
</view>
</view>
<view class="uni-common-mt uni-common-mb">
<text class="uni-tips">第一个枚举值,'' (空字符串) - 空值情况</text>
<enum-data :items="minHeightEnum" title="min-height 枚举值" @change="radioChangeMinHeight" :compact="true"></enum-data>
<input-data :defaultValue="minHeight" title="min-height 自定义值" type="text" @confirm="inputChangeMinHeight"></input-data>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script setup lang="uts">
import { ItemType } from '@/components/enum-data/enum-data-types'
const minHeightEnum: ItemType[] = [
{ value: 0, name: '' },
{ value: 1, name: '0' },
{ value: 2, name: '0px' },
{ value: 3, name: '50px' },
{ value: 4, name: '150px' },
{ value: 5, name: '80rpx' },
]
const minHeight = ref('100px')
const minHeightActual = ref('')
const minHeightActualText = ref('')
const minHeightActualImage = ref('')
const minHeightActualFlat = ref('')
const minHeightActualTextFlat = ref('')
const minHeightActualImageFlat = ref('')
const viewRef = ref(null as UniElement | null)
const textRef = ref(null as UniTextElement | null)
const imageRef = ref(null as UniImageElement | null)
const viewRefFlat = ref(null as UniElement | null)
const textRefFlat = ref(null as UniTextElement | null)
const imageRefFlat = ref(null as UniImageElement | null)
const getPropertyValues = () => {
minHeightActual.value = viewRef.value?.style.getPropertyValue('min-height') ?? ''
minHeightActualFlat.value = viewRefFlat.value?.style.getPropertyValue('min-height') ?? ''
minHeightActualText.value = textRef.value?.style.getPropertyValue('min-height') ?? ''
minHeightActualTextFlat.value = textRefFlat.value?.style.getPropertyValue('min-height') ?? ''
minHeightActualImage.value = imageRef.value?.style.getPropertyValue('min-height') ?? ''
minHeightActualImageFlat.value = imageRefFlat.value?.style.getPropertyValue('min-height') ?? ''
}
const changeMinHeight = (value: string) => {
minHeight.value = value
viewRef.value?.style.setProperty('min-height', value)
viewRefFlat.value?.style.setProperty('min-height', value)
textRef.value?.style.setProperty('min-height', value)
textRefFlat.value?.style.setProperty('min-height', value)
imageRef.value?.style.setProperty('min-height', value)
imageRefFlat.value?.style.setProperty('min-height', value)
// 使用 nextTick 确保样式已应用后再获取值
nextTick(() => {
getPropertyValues()
})
}
const radioChangeMinHeight = (index: number) => {
const selectedItem = minHeightEnum.find((item): boolean => item.value === index)
if (selectedItem != null) {
changeMinHeight(selectedItem.name)
}
}
const inputChangeMinHeight = (value: string) => {
changeMinHeight(value)
}
onReady(() => {
getPropertyValues()
})
defineExpose({
radioChangeMinHeight
})
</script>
<style>
.common {
width: 250px;
height: 50px;
background-color: cyan;
justify-content: center;
align-items: center;
}
.common-dynamic {
width: 100px;
height: 50px;
background-color: cyan;
}
.test-container {
flex-direction: row;
justify-content: space-between;
margin-top: 10px;
}
.test-item {
flex: 1;
margin: 0 5px;
}
.test-box {
width: 100%;
height: 150px;
background-color: gray;
}
</style>
在App端为了优化文字排版性能,不支持 auto、none、max-content、min-content、fit-content,默认值为0px。
默认值为 auto,通过计算选择一个 min-height 值。