简体中文
margin 属性为给定元素设置所有四个(上下左右)方向的外边距属性。也就是 margin-top,margin-right,margin-bottom,和 margin-left 四个外边距属性设置的简写。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
Chrome | Edge | Firefox | Opera | Safari | IE |
---|---|---|---|---|---|
√( 1 ) | √( 12 ) | √( 1 ) | √( 3.5 ) | √( 1 ) | √( 3 ) |
margin: [ <length> | <percentage> | auto ]{1,4};
名称 | 兼容性 | 描述 |
---|---|---|
auto | 让浏览器自己选择一个合适的外边距。有时,在一些特殊情况下,该值可以使元素居中。 |
0
注意
Template
Script
<template>
<view style="flex-grow: 1;">
<view>
<text>margin: 25px</text>
<view style="width: 250px;height: 250px;background-color: gray;">
<view class="common" style="background-color: red;"></view>
<view class="common" style="margin: 25px;"></view>
<view class="common" style="background-color: blue;"></view>
</view>
</view>
<view>
<text>margin: 10%</text>
<view style="width: 250px;height: 250px;background-color: gray;">
<view class="common" style="background-color: red;"></view>
<view class="common" style="margin: 10%;"></view>
<view class="common" style="background-color: blue;"></view>
</view>
</view>
</view>
</template>
<style>
.common {
height: 50px;
background-color: green;
}
</style>