简体中文
CSS 属性 border-right 是属性border-right-color, border-right-style, 和border-right-width的三者的缩写。这些属性都是在描述一个元素的右边的边框border。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
Chrome | Edge | Firefox | Opera | Safari | IE |
---|---|---|---|---|---|
√( 1 ) | √( 12 ) | √( 1 ) | √( 9.2 ) | √( 1 ) | √( 5.5 ) |
border-right: <line-width> || <line-style> || <color>;
0
Template
Script
<template>
<view style="flex-grow: 1;">
<view>
<text>border-right: 5px solid blue</text>
<view class="common" style="border-right: 5px solid blue;"></view>
</view>
</view>
</template>
<style>
.common {
width: 250px;
height: 250px;
background-color: gray;
}
</style>