简体中文
white-space 属性用于设置如何处理元素中的空白字符(空格、换行符、制表符)以及文本是否自动换行。
| Web | Android | iOS | HarmonyOS | HarmonyOS(Vapor) |
|---|---|---|---|---|
| 4.0 | 4.0 | 4.11 | 4.61 | 5.0 |
white-space: normal | pre | nowrap | pre-wrap | pre-line | break-spaces | [ <'white-space-collapse'> || <'text-wrap'> || <'white-space-trim'> ];
| 名称 | 兼容性 | 描述 |
|---|---|---|
| normal | 换行符(\n)当做空白符处理,连续的多个空白字符会合并为一个空格,文本遇到边界会自动换行,行末空白字符移除。 | |
| nowrap | 换行符(\n)当做空白符处理,连续的多个空白字符会合并为一个空格,文本遇到边界不会自动换行,行末空白字符移除。 | |
| pre | 换行符(\n)保留并换行显示,连续的多个空白字符保留,文本遇到边界不会自动换行,行末空白字符保留。 | |
| pre-wrap | 换行符(\n)保留并换行显示,连续的多个空白字符保留,文本遇到边界会自动换行,行末空白字符保留但“不占位置”。 | |
| pre-line | 换行符(\n)保留并换行显示,连续的多个空白字符会合并为一个空格,文本遇到边界会自动换行,行末空白字符移除。 | |
| break-spaces | 换行符(\n)保留并换行显示,连续的多个空白字符保留,文本遇到边界会自动换行,行末空白字符换行处理。 | |
| keep | 不对空白字符处理,保持原始值。换行符(\n)保留并换行显示,连续的多个空白字符保留,文本遇到边界会自动换行,行末空白字符保留。 |
| 平台 | 默认值 |
|---|---|
| uvue-app | keep |
| uvue-web | pre-line |
注意:W3C 默认值为:normal
app平台、web平台调整 white-space 属性的实现按 W3C 标准规范,同时 app 平台新增支持 keep 属性值。
默认值调整
keep,默认值由 normal 调整为 keepkeep,默认值为 keep调整前实现规范
示例为hello uni-app x alpha分支,与最新HBuilderX Alpha版同步。与最新正式版同步的master分支示例另见
示例
<template>
<!-- #ifdef APP -->
<scroll-view style="flex: 1">
<!-- #endif -->
<view style="flex-grow: 1;">
<scroll-view style="padding: 10px 0px; background-color: gray;justify-content: center;" direction="horizontal">
<text class="text" :style="{ whiteSpace: whiteSpace }">{{multiLineText}}</text>
</scroll-view>
<text>拍平</text>
<scroll-view style="padding: 10px 0px; background-color: gray;justify-content: center;" direction="horizontal">
<text class="text" :style="{ whiteSpace: whiteSpace }" flatten>{{multiLineText}}</text>
</scroll-view>
<scroll-view style="flex: 1">
<view class="content uni-common-mt">
<text class="uni-title-text">setProperty 设置与 getPropertyValue 获取 white-space </text>
</view>
<view class="common-box">
<!-- 普通版本 -->
<view class="uni-common-mt">
<text class="uni-title-text">white-space</text>
<text class="uni-info">设置值: {{whiteSpace}}</text>
<text class="uni-info">获取值: {{whiteSpaceActual}}</text>
<view class="test-box">
<text ref="textRef" class="text test-text" :style="{ whiteSpace: whiteSpace }">{{multiLineText}}</text>
</view>
</view>
<!-- 拍平版本 -->
<view class="uni-common-mt">
<text class="uni-title-text">拍平</text>
<text class="uni-info">设置值: {{whiteSpace}}</text>
<text class="uni-info">获取值: {{whiteSpaceActualFlat}}</text>
<view class="test-box">
<text ref="textRefFlat" class="text test-text-flatten" :style="{ whiteSpace: whiteSpace }" flatten>{{multiLineText}}</text>
</view>
</view>
</view>
<view class="uni-common-mt uni-common-mb">
<text class="uni-tips">第一个枚举值,'' (空字符串) - 空值情况</text>
<enum-data :items="whiteSpaceEnum" title="white-space 枚举值" @change="radioChangeWhiteSpace" :compact="true"></enum-data>
<input-data :defaultValue="whiteSpace" title="white-space 自定义值" type="text" @confirm="inputChangeWhiteSpace"></input-data>
</view>
</scroll-view>
</view>
<!-- #ifdef APP -->
</scroll-view>
<!-- #endif -->
</template>
<script setup lang="uts">
import { ItemType } from '@/components/enum-data/enum-data-types'
const whiteSpaceEnum: ItemType[] = [
{ value: 0, name: '' },
{ value: 1, name: 'normal' },
{ value: 2, name: 'nowrap' },
{ value: 3, name: 'pre' },
{ value: 4, name: 'pre-wrap' },
{ value: 5, name: 'pre-line' },
{ value: 6, name: 'break-spaces' },
{ value: 7, name: 'keep' }
]
const multiLineText = ref(`HBuilderX,
轻巧、
极速,
极客编辑器;
uni-app x,
终极跨平台方案;
uts,
大一统语言
HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言`)
const whiteSpace = ref('normal')
const whiteSpaceActual = ref('')
const whiteSpaceActualFlat = ref('')
const textRef = ref(null as UniTextElement | null)
const textRefFlat = ref(null as UniTextElement | null)
const getPropertyValues = () => {
whiteSpaceActual.value = textRef.value?.style.getPropertyValue('white-space') ?? ''
whiteSpaceActualFlat.value = textRefFlat.value?.style.getPropertyValue('white-space') ?? ''
}
const changeWhiteSpace = (value: string) => {
whiteSpace.value = value
textRef.value?.style.setProperty('white-space', value)
textRefFlat.value?.style.setProperty('white-space', value)
// 使用 nextTick 确保样式已应用后再获取值
nextTick(() => {
getPropertyValues()
})
}
const radioChangeWhiteSpace = (index: number) => {
const selectedItem = whiteSpaceEnum.find((item): boolean => item.value === index)
if (selectedItem != null) {
changeWhiteSpace(selectedItem.name)
}
}
const inputChangeWhiteSpace = (value: string) => {
changeWhiteSpace(value)
}
onReady(() => {
getPropertyValues()
})
defineExpose({
radioChangeWhiteSpace
})
</script>
<style>
.text {
font-size: 16px;
/* 需要设置 align-self text组件才会自适应宽度 */
align-self: flex-start;
}
.common-box{
flex-direction: row;
justify-content: space-around;
}
.test-box {
width: 180px;
height: 200px;
background-color: gray;
justify-content: center;
align-items: center;
}
</style>