Skip to content

Top / Right / Bottom / Left

CSS leftrighttopbottom 属性定义了定位元素的外边距边界与其包含块左边界之间的偏移,非定位元素设置此属性无效。

函数方法

lrtbDistance(options)

获取定位元素偏移量

options

参数名称类型必填可选值描述
directionstring边距方向属性边距方向
marginstring-边距距离

direction 边距方向

参数值描述
left左外边距边界与其包含块左边界之间的偏移
right右外边距边界与其包含块左边界之间的偏移
top上外边距边界与其包含块左边界之间的偏移
bottom下外边距边界与其包含块左边界之间的偏移

示例

vue
<template>
	<view class="box" :style="[lrtbDistance('left','50px')]">
		
	</view>
</template>

<script setup>
	import { lrtbDistance } from "@/uni_modules/ucs-css"; 
</script>

<style>
	.box {
		width: 88px;
		height: 88px;
		background-color: #BCA9FE;
		position: fixed;
	}
</style>