简体中文
CSS 属性 padding-bottom 是指一个元素在内边距区域(padding area)中下方的高度。内边距(padding)是指一个元素的内容和边框之间的区域。和外边距(margin)不同,内边距(padding)是不允许有负值的。内边距(padding)可以用四个值声明一个元素的四个方向的内边距(paddings),这是一种 CSS 缩写属性。
| Web | Android | iOS | HarmonyOS | HarmonyOS(Vapor) |
|---|---|---|---|---|
| 4.0 | 3.9 | 4.11 | 4.61 | 5.0 |
padding-bottom: <length> | <percentage>;
0
示例为hello uni-app x alpha分支,与最新HBuilderX Alpha版同步。与最新正式版同步的master分支示例另见
示例
<template>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view style="flex-grow: 1;">
<text class="uni-tips">说明:左边是正常版本,右边是拍平版本</text>
<view>
<text>padding-bottom: 25px</text>
<view class="demo-box">
<view class="common" style="padding-bottom: 25px;">
<view class="inner-content"></view>
</view>
<view class="common" style="padding-bottom: 25px;" flatten>
<view class="inner-content"></view>
</view>
</view>
</view>
<view>
<text>padding-bottom: 10%</text>
<view class="demo-box">
<view class="common" style="padding-bottom: 10%;">
<view class="inner-content"></view>
</view>
<view class="common" style="padding-bottom: 10%;" flatten>
<view class="inner-content"></view>
</view>
</view>
</view>
<view class="uni-common-mt">
<text class="uni-title-text">setProperty 设置与 getPropertyValue 获取 padding-bottom </text>
</view>
<!-- 普通版本 -->
<view class="test-container">
<view class="test-item">
<text class="uni-subtitle-text">view 组件</text>
<text class="uni-info">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActual}}</text>
<view class="test-box">
<view ref="viewRef" class="common-view test-view" :style="{ paddingBottom: paddingBottom }">
<view style="flex-grow: 1;background-color: cyan;"><text>view</text></view>
</view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件</text>
<text class="uni-info">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActualText}}</text>
<view class="test-box">
<text ref="textRef" class="common-text test-text" :style="{ paddingBottom: paddingBottom }">当前为text组件当前为text组件</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件</text>
<text class="uni-info">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActualImage}}</text>
<view class="test-box">
<image ref="imageRef" class="common-image test-image" :style="{ paddingBottom: paddingBottom }" 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">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActualFlat}}</text>
<view class="test-box">
<view ref="viewRefFlat" class="common-view test-view-flatten" :style="{ paddingBottom: paddingBottom }" flatten>
<view style="flex-grow: 1;background-color: cyan;"><text>view</text></view>
</view>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">text 组件拍平</text>
<text class="uni-info">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActualTextFlat}}</text>
<view class="test-box">
<text ref="textRefFlat" class="common-text test-text-flatten" :style="{ paddingBottom: paddingBottom }" flatten>当前为text组件当前为text组件</text>
</view>
</view>
<view class="test-item">
<text class="uni-subtitle-text">image 组件拍平</text>
<text class="uni-info">设置值: {{paddingBottom}}</text>
<text class="uni-info">获取值: {{paddingBottomActualImageFlat}}</text>
<view class="test-box">
<image ref="imageRefFlat" class="common-image test-image-flatten" :style="{ paddingBottom: paddingBottom }" 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="paddingBottomEnum" title="padding-bottom 枚举值" @change="radioChangePaddingBottom" :compact="true"></enum-data>
<input-data :defaultValue="paddingBottom" title="padding-bottom 自定义值" type="text" @confirm="inputChangePaddingBottom"></input-data>
</view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script setup lang="uts">
import { ItemType } from '@/components/enum-data/enum-data-types'
const paddingBottom = ref('25px')
const paddingBottomActual = ref('')
const paddingBottomActualText = ref('')
const paddingBottomActualImage = ref('')
const paddingBottomActualFlat = ref('')
const paddingBottomActualTextFlat = ref('')
const paddingBottomActualImageFlat = 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 paddingBottomEnum: ItemType[] = [
{ value: 0, name: '' },
{ value: 1, name: '0' },
{ value: 2, name: '0px' },
{ value: 3, name: '40px' },
{ value: 4, name: '0%' },
{ value: 5, name: '20%' }
]
const getPropertyValues = () => {
paddingBottomActual.value = viewRef.value?.style.getPropertyValue('padding-bottom') ?? ''
paddingBottomActualFlat.value = viewRefFlat.value?.style.getPropertyValue('padding-bottom') ?? ''
paddingBottomActualText.value = textRef.value?.style.getPropertyValue('padding-bottom') ?? ''
paddingBottomActualTextFlat.value = textRefFlat.value?.style.getPropertyValue('padding-bottom') ?? ''
paddingBottomActualImage.value = imageRef.value?.style.getPropertyValue('padding-bottom') ?? ''
paddingBottomActualImageFlat.value = imageRefFlat.value?.style.getPropertyValue('padding-bottom') ?? ''
}
const changePaddingBottom = (value: string) => {
paddingBottom.value = value
viewRef.value?.style.setProperty('padding-bottom', value)
viewRefFlat.value?.style.setProperty('padding-bottom', value)
textRef.value?.style.setProperty('padding-bottom', value)
textRefFlat.value?.style.setProperty('padding-bottom', value)
imageRef.value?.style.setProperty('padding-bottom', value)
imageRefFlat.value?.style.setProperty('padding-bottom', value)
// 使用 nextTick 确保样式已应用后再获取值
nextTick(() => {
getPropertyValues()
})
}
const radioChangePaddingBottom = (index: number) => {
const selectedItem = paddingBottomEnum.find((item): boolean => item.value === index)
if (selectedItem != null) {
changePaddingBottom(selectedItem.name)
}
}
const inputChangePaddingBottom = (value: string) => {
changePaddingBottom(value)
}
onReady(() => {
getPropertyValues()
})
defineExpose({
radioChangePaddingBottom
})
</script>
<style>
.common {
flex:1;
margin:0 10px;
height: 100px;
background-color: gray;
}
.demo-box {
flex-direction: row;
margin-top: 10px;
justify-content: space-around;
}
.inner-content {
flex-grow: 1;
background-color: cyan;
}
.common-view {
height: 80px;
background-color: gray;
}
.common-text {
/* 为了加强视觉效果 */
min-height: 40px;
background-color: gray;
}
.common-image {
width: 80px;
height: 80px;
background-color: gray;
}
.test-container {
flex-direction: row;
justify-content: space-between;
margin-top: 10px;
}
.test-item {
flex: 1;
margin: 0 5px;
}
.test-box {
width: 100%;
height: 80px;
background-color: lightgray;
}
</style>