简体中文
padding CSS 简写属性控制元素所有四条边的内边距区域。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
Chrome | Edge | Firefox | Opera | Safari | IE |
---|---|---|---|---|---|
√( 1 ) | √( 12 ) | √( 1 ) | √( 3.5 ) | √( 1 ) | √( 4 ) |
padding: [ <length> | <percentage> ]{1,4};
Template
Script
<template>
<view style="flex-grow: 1;">
<view>
<text>padding: 25px</text>
<view class="common" style="padding: 25px;">
<view style="flex-grow: 1;background-color: red;"></view>
</view>
</view>
<view style="width: 250px;">
<text>padding: 10%</text>
<view class="common" style="padding: 10%;">
<view style="flex-grow: 1;background-color: red;"></view>
</view>
</view>
</view>
</template>
<style>
.common {
width: 250px;
height: 250px;
background-color: gray;
}
</style>